Token Orbit Bridge Polygon Toncoin

Bridge 
 

Overview ERC-20

Price
$0.00 @ 0.000000 MATIC
Fully Diluted Market Cap
Total Supply:
49,230.946534 oTON

Holders:
302 addresses

Transfers:
-

 
Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

OVERVIEW

Orbit Bridge is an interchain communication protocol that allows communication between heterogeneous blockchains.


Update? Click here to update the token ICO / general information
# Exchange Pair Price  24H Volume % Volume
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ERC20

Compiler Version
v0.5.0+commit.1d4f565a

Optimization Enabled:
Yes with 1 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 4: erc20.sol
pragma solidity ^0.5.0;

import 'Context.sol';
import 'SafeMath.ERC.sol';
import 'IERC20.sol';

contract ERC20 is Context, IERC20 {
    using SafeMathERC for uint256;

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    address private _owner;
    address private _nextOwner;

    address private _minter;

    bool public isInitialized;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(address owner_, address minter_, string memory name_, string memory symbol_, uint8 decimals_, bool init) public {
        _owner = owner_;
        _minter = minter_;

        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;

        isInitialized = init;
    }

    modifier onlyOwner {
        require(_msgSender() == owner());
        _;
    }

    modifier onlyOwnerOrBeforeInit {
        require(_msgSender() == owner() || !isInitialized);
        _;
    }

    modifier onlyMinter {
        require(_msgSender() == minter());
        _;
    }

    function owner() public view returns (address) {
        return _owner;
    }

    function nextOwner() public view returns (address) {
        return _nextOwner;
    }

    function minter() public view returns (address) {
        return _minter;
    }

    function setNextOwner(address nextOwner_) public onlyOwner {
        require(nextOwner_ != address(0));

        _nextOwner = nextOwner_;
    }

    function changeOwner() public {
        require(_msgSender() == nextOwner());

        emit OwnershipTransferred(owner(), nextOwner());

        _owner = nextOwner();
        _nextOwner = address(0);
    }

    function setMinter(address minter_) public onlyOwner {
        require(minter_ != address(0));

        _minter = minter_;
    }

    function setTokenInfo(string memory tokenName, string memory tokenSymbol) public onlyOwnerOrBeforeInit {
        _name = tokenName;
        _symbol = tokenSymbol;

        if(isInitialized == false) isInitialized = true;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner_, address spender) public view returns (uint256) {
        return _allowances[owner_][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    function mint(address account, uint256 amount) public onlyMinter {
        _mint(account, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

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

    function burn(address account, uint256 amount) public onlyMinter {
        _burn(account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner_, address spender, uint256 amount) internal {
        require(owner_ != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner_][spender] = amount;
        emit Approval(owner_, spender, amount);
    }
}

File 1 of 4: Context.sol
pragma solidity ^0.5.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 3 of 4: IERC20.sol
pragma solidity ^0.5.0;

interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount)
        external
        returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}

File 4 of 4: SafeMath.ERC.sol
pragma solidity ^0.5.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMathERC {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * _Available since v2.4.0._
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minter","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"amount","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"sender","type":"address"},{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"nextOwner_","type":"address"}],"name":"setNextOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isInitialized","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"changeOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"nextOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"}],"name":"setTokenInfo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner_","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"minter_","type":"address"}],"name":"setMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"owner_","type":"address"},{"name":"minter_","type":"address"},{"name":"name_","type":"string"},{"name":"symbol_","type":"string"},{"name":"decimals_","type":"uint8"},{"name":"init","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

60806040523480156200001157600080fd5b50604051620015f0380380620015f0833981018060405260c08110156200003757600080fd5b81516020830151604084018051929491938201926401000000008111156200005e57600080fd5b820160208101848111156200007257600080fd5b81516401000000008111828201871017156200008d57600080fd5b50509291906020018051640100000000811115620000aa57600080fd5b82016020810184811115620000be57600080fd5b8151640100000000811182820187101715620000d957600080fd5b50506020828101516040909301516005805461010060a860020a031916610100600160a060020a038c8116919091029190911790915560078054600160a060020a031916918a1691909117905586519295509293506200013f91600391870190620001a7565b50825162000155906004906020860190620001a7565b506005805460ff90931660ff199093169290921790915560078054911515740100000000000000000000000000000000000000000260a060020a60ff0219909216919091179055506200024c92505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001ea57805160ff19168380011785556200021a565b828001600101855582156200021a579182015b828111156200021a578251825591602001919060010190620001fd565b50620002289291506200022c565b5090565b6200024991905b8082111562000228576000815560010162000233565b90565b611394806200025c6000396000f3fe6080604052600436106101035763ffffffff60e060020a60003504166306fdde0381146101085780630754617214610192578063095ea7b3146101c357806318160ddd1461021057806323b872dd146102375780632d202d241461027a578063313ce567146102af578063392e53cd146102da57806339509351146102ef57806340c10f191461032857806362a094771461036157806369f3331d1461037657806370a082311461038b5780638da5cb5b146103be57806395d89b41146103d35780639dc29fac146103e8578063a457c2d714610421578063a9059cbb1461045a578063da262f5814610493578063dd62ed3e146105c9578063fca3b5aa14610604575b600080fd5b34801561011457600080fd5b5061011d610637565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015757818101518382015260200161013f565b50505050905090810190601f1680156101845780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561019e57600080fd5b506101a76106ce565b60408051600160a060020a039092168252519081900360200190f35b3480156101cf57600080fd5b506101fc600480360360408110156101e657600080fd5b50600160a060020a0381351690602001356106dd565b604080519115158252519081900360200190f35b34801561021c57600080fd5b506102256106fa565b60408051918252519081900360200190f35b34801561024357600080fd5b506101fc6004803603606081101561025a57600080fd5b50600160a060020a03813581169160208101359091169060400135610700565b34801561028657600080fd5b506102ad6004803603602081101561029d57600080fd5b5035600160a060020a03166107cd565b005b3480156102bb57600080fd5b506102c4610830565b6040805160ff9092168252519081900360200190f35b3480156102e657600080fd5b506101fc610839565b3480156102fb57600080fd5b506101fc6004803603604081101561031257600080fd5b50600160a060020a038135169060200135610849565b34801561033457600080fd5b506102ad6004803603604081101561034b57600080fd5b50600160a060020a03813516906020013561089d565b34801561036d57600080fd5b506102ad6108d7565b34801561038257600080fd5b506101a7610992565b34801561039757600080fd5b50610225600480360360208110156103ae57600080fd5b5035600160a060020a03166109a1565b3480156103ca57600080fd5b506101a76109bc565b3480156103df57600080fd5b5061011d6109d0565b3480156103f457600080fd5b506102ad6004803603604081101561040b57600080fd5b50600160a060020a038135169060200135610a31565b34801561042d57600080fd5b506101fc6004803603604081101561044457600080fd5b50600160a060020a038135169060200135610a67565b34801561046657600080fd5b506101fc6004803603604081101561047d57600080fd5b50600160a060020a038135169060200135610b04565b34801561049f57600080fd5b506102ad600480360360408110156104b657600080fd5b810190602081018135602060020a8111156104d057600080fd5b8201836020820111156104e257600080fd5b803590602001918460018302840111602060020a8311171561050357600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050602060020a81111561055557600080fd5b82018360208201111561056757600080fd5b803590602001918460018302840111602060020a8311171561058857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610b18945050505050565b3480156105d557600080fd5b50610225600480360360408110156105ec57600080fd5b50600160a060020a0381358116916020013516610bb0565b34801561061057600080fd5b506102ad6004803603602081101561062757600080fd5b5035600160a060020a0316610bdb565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106c35780601f10610698576101008083540402835291602001916106c3565b820191906000526020600020905b8154815290600101906020018083116106a657829003601f168201915b505050505090505b90565b600754600160a060020a031690565b60006106f16106ea610c3e565b8484610c42565b50600192915050565b60025490565b600061070d848484610d81565b6107c384610719610c3e565b6107be85606060405190810160405280602881526020017f45524332303a207472616e7366657220616d6f756e7420657863656564732061815260200160c060020a676c6c6f77616e636502815250600160008b600160a060020a0316600160a060020a031681526020019081526020016000206000610797610c3e565b600160a060020a03168152602081019190915260400160002054919063ffffffff610f5016565b610c42565b5060019392505050565b6107d56109bc565b600160a060020a03166107e6610c3e565b600160a060020a0316146107f957600080fd5b600160a060020a038116151561080e57600080fd5b60068054600160a060020a031916600160a060020a0392909216919091179055565b60055460ff1690565b60075460a060020a900460ff1681565b60006106f1610856610c3e565b846107be8560016000610867610c3e565b600160a060020a03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610fea16565b6108a56106ce565b600160a060020a03166108b6610c3e565b600160a060020a0316146108c957600080fd5b6108d3828261104e565b5050565b6108df610992565b600160a060020a03166108f0610c3e565b600160a060020a03161461090357600080fd5b61090b610992565b600160a060020a031661091c6109bc565b600160a060020a03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3610959610992565b60058054600160a060020a03929092166101000261010060a860020a031990921691909117905560068054600160a060020a0319169055565b600654600160a060020a031690565b600160a060020a031660009081526020819052604090205490565b6005546101009004600160a060020a031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106c35780601f10610698576101008083540402835291602001916106c3565b610a396106ce565b600160a060020a0316610a4a610c3e565b600160a060020a031614610a5d57600080fd5b6108d38282611131565b60006106f1610a74610c3e565b846107be85606060405190810160405280602581526020017f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77815260200160d860020a64207a65726f0281525060016000610acd610c3e565b600160a060020a03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610f5016565b60006106f1610b11610c3e565b8484610d81565b610b206109bc565b600160a060020a0316610b31610c3e565b600160a060020a03161480610b50575060075460a060020a900460ff16155b1515610b5b57600080fd5b8151610b6e9060039060208501906112b0565b508051610b829060049060208401906112b0565b5060075460a060020a900460ff1615156108d3576007805460a060020a60ff02191660a060020a1790555050565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b610be36109bc565b600160a060020a0316610bf4610c3e565b600160a060020a031614610c0757600080fd5b600160a060020a0381161515610c1c57600080fd5b60078054600160a060020a031916600160a060020a0392909216919091179055565b3390565b600160a060020a0383161515610cb1576040805160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f20616464604482015260e060020a637265737302606482015290519081900360840190fd5b600160a060020a0382161515610d1f576040805160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015260f060020a61737302606482015290519081900360840190fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a0383161515610df2576040805160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015260d860020a64647265737302606482015290519081900360840190fd5b600160a060020a0382161515610e61576040805160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f2061646472604482015260e860020a6265737302606482015290519081900360840190fd5b60408051606081018252602681527f45524332303a207472616e7366657220616d6f756e742065786365656473206260208083019190915260d060020a65616c616e63650282840152600160a060020a0386166000908152908190529190912054610ed391839063ffffffff610f5016565b600160a060020a038085166000908152602081905260408082209390935590841681522054610f08908263ffffffff610fea16565b600160a060020a0380841660008181526020818152604091829020949094558051858152905191939287169260008051602061134983398151915292918290030190a3505050565b60008184841115610fe25760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610fa7578181015183820152602001610f8f565b50505050905090810190601f168015610fd45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611047576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600160a060020a03821615156110ae576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6002546110c1908263ffffffff610fea16565b600255600160a060020a0382166000908152602081905260409020546110ed908263ffffffff610fea16565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391926000805160206113498339815191529281900390910190a35050565b600160a060020a038216151561119e576040805160e560020a62461bcd02815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f20616464726573604482015260f860020a607302606482015290519081900360840190fd5b60408051606081018252602281527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60208083019190915260f060020a6163650282840152600160a060020a038516600090815290819052919091205461120c91839063ffffffff610f5016565b600160a060020a038316600090815260208190526040902055600254611238908263ffffffff61126e16565b600255604080518281529051600091600160a060020a038516916000805160206113498339815191529181900360200190a35050565b600061104783836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610f50565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106112f157805160ff191683800117855561131e565b8280016001018555821561131e579182015b8281111561131e578251825591602001919060010190611303565b5061132a92915061132e565b5090565b6106cb91905b8082111561132a576000815560010161133456feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058204b954bc343bac6b2255ea0054aeedaf70caf100d351c8289472d7175519b4e6700290000000000000000000000004dd5c30ae4a140d3b9180c778bd2e74c8e64e38a00000000000000000000000058a42330c0984babd5dec2c943eaa345b7f41e4400000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000184f7262697420427269646765204d6174696320546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000034f42540000000000000000000000000000000000000000000000000000000000

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

0000000000000000000000004dd5c30ae4a140d3b9180c778bd2e74c8e64e38a00000000000000000000000058a42330c0984babd5dec2c943eaa345b7f41e4400000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000184f7262697420427269646765204d6174696320546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000034f42540000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : owner_ (address): 0x4dd5c30ae4a140d3b9180c778bd2e74c8e64e38a
Arg [1] : minter_ (address): 0x58a42330c0984babd5dec2c943eaa345b7f41e44
Arg [2] : name_ (string): Orbit Bridge Matic Token
Arg [3] : symbol_ (string): OBT
Arg [4] : decimals_ (uint8): 9
Arg [5] : init (bool): False

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000004dd5c30ae4a140d3b9180c778bd2e74c8e64e38a
Arg [1] : 00000000000000000000000058a42330c0984babd5dec2c943eaa345b7f41e44
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [7] : 4f7262697420427269646765204d6174696320546f6b656e0000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [9] : 4f42540000000000000000000000000000000000000000000000000000000000


Deployed ByteCode Sourcemap

96:9877:3:-;;;;;;;;;-1:-1:-1;;;96:9877:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2579:81;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2579:81:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2579:81:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1709:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1709:79:3;;;;;;;;-1:-1:-1;;;;;1709:79:3;;;;;;;;;;;;;;4565:149;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4565:149:3;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4565:149:3;;;;;;;;;;;;;;;;;;;;;;;;;;;3622:89;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3622:89:3;;;;;;;;;;;;;;;;;;;;5172:300;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5172:300:3;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5172:300:3;;;;;;;;;;;;;;;;;;1794:143;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1794:143:3;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1794:143:3;-1:-1:-1;;;;;1794:143:3;;;;;3481:81;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3481:81:3;;;;;;;;;;;;;;;;;;;;;;;508:25;;8:9:-1;5:2;;;30:1;27;20:12;5:2;508:25:3;;;;5867:207;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5867:207:3;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5867:207:3;;;;;;;;;7763:104;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7763:104:3;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;7763:104:3;;;;;;;;;1943:205;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1943:205:3;;;;1618:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1618:85:3;;;;3769:108;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3769:108:3;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3769:108:3;-1:-1:-1;;;;;3769:108:3;;;1535:77;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1535:77:3;;;;2773:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2773:85:3;;;;8445:104;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8445:104:3;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8445:104:3;;;;;;;;;6561:258;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6561:258:3;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6561:258:3;;;;;;;;;4080:155;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4080:155:3;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4080:155:3;;;;;;;;;2288:226;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2288:226:3;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2288:226:3;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;2288:226:3;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;2288:226:3;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;2288:226:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;2288:226:3;;;;;;;;-1:-1:-1;2288:226:3;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;2288:226:3;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;2288:226:3;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;2288:226:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;2288:226:3;;-1:-1:-1;2288:226:3;;-1:-1:-1;;;;;2288:226:3;4293:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4293:134:3;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4293:134:3;;;;;;;;;;;2154:128;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2154:128:3;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2154:128:3;-1:-1:-1;;;;;2154:128:3;;;2579:81;2648:5;2641:12;;;;;;;;-1:-1:-1;;2641:12:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2616:13;;2641:12;;2648:5;;2641:12;;2648:5;2641:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2579:81;;:::o;1709:79::-;1774:7;;-1:-1:-1;;;;;1774:7:3;1709:79;:::o;4565:149::-;4631:4;4647:39;4656:12;:10;:12::i;:::-;4670:7;4679:6;4647:8;:39::i;:::-;-1:-1:-1;4703:4:3;4565:149;;;;:::o;3622:89::-;3692:12;;3622:89;:::o;5172:300::-;5261:4;5277:36;5287:6;5295:9;5306:6;5277:9;:36::i;:::-;5323:121;5332:6;5340:12;:10;:12::i;:::-;5354:89;5392:6;5354:89;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5354:89:3;;;:11;:19;5366:6;-1:-1:-1;;;;;5354:19:3;-1:-1:-1;;;;;5354:19:3;;;;;;;;;;;;:33;5374:12;:10;:12::i;:::-;-1:-1:-1;;;;;5354:33:3;;;;;;;;;;;;-1:-1:-1;5354:33:3;;;:89;;:37;:89;:::i;:::-;5323:8;:121::i;:::-;-1:-1:-1;5461:4:3;5172:300;;;;;:::o;1794:143::-;1301:7;:5;:7::i;:::-;-1:-1:-1;;;;;1285:23:3;:12;:10;:12::i;:::-;-1:-1:-1;;;;;1285:23:3;;1277:32;;;;;;-1:-1:-1;;;;;1871:24:3;;;;1863:33;;;;;;1907:10;:23;;-1:-1:-1;;;;;;1907:23:3;-1:-1:-1;;;;;1907:23:3;;;;;;;;;;1794:143::o;3481:81::-;3546:9;;;;3481:81;:::o;508:25::-;;;-1:-1:-1;;;508:25:3;;;;;:::o;5867:207::-;5947:4;5963:83;5972:12;:10;:12::i;:::-;5986:7;5995:50;6034:10;5995:11;:25;6007:12;:10;:12::i;:::-;-1:-1:-1;;;;;5995:25:3;;;;;;;;;;;;;;;;;-1:-1:-1;5995:25:3;;;:34;;;;;;;;;;;:50;:38;:50;:::i;7763:104::-;1502:8;:6;:8::i;:::-;-1:-1:-1;;;;;1486:24:3;:12;:10;:12::i;:::-;-1:-1:-1;;;;;1486:24:3;;1478:33;;;;;;7838:22;7844:7;7853:6;7838:5;:22::i;:::-;7763:104;;:::o;1943:205::-;2007:11;:9;:11::i;:::-;-1:-1:-1;;;;;1991:27:3;:12;:10;:12::i;:::-;-1:-1:-1;;;;;1991:27:3;;1983:36;;;;;;2065:11;:9;:11::i;:::-;-1:-1:-1;;;;;2035:42:3;2056:7;:5;:7::i;:::-;-1:-1:-1;;;;;2035:42:3;;;;;;;;;;;2097:11;:9;:11::i;:::-;2088:6;:20;;-1:-1:-1;;;;;2088:20:3;;;;;;-1:-1:-1;;;;;;2088:20:3;;;;;;;;;2118:10;:23;;-1:-1:-1;;;;;;2118:23:3;;;1943:205::o;1618:85::-;1686:10;;-1:-1:-1;;;;;1686:10:3;1618:85;:::o;3769:108::-;-1:-1:-1;;;;;3852:18:3;3826:7;3852:18;;;;;;;;;;;;3769:108::o;1535:77::-;1599:6;;;;;-1:-1:-1;;;;;1599:6:3;;1535:77::o;2773:85::-;2844:7;2837:14;;;;;;;;-1:-1:-1;;2837:14:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2812:13;;2837:14;;2844:7;;2837:14;;2844:7;2837:14;;;;;;;;;;;;;;;;;;;;;;;;8445:104;1502:8;:6;:8::i;:::-;-1:-1:-1;;;;;1486:24:3;:12;:10;:12::i;:::-;-1:-1:-1;;;;;1486:24:3;;1478:33;;;;;;8520:22;8526:7;8535:6;8520:5;:22::i;6561:258::-;6646:4;6662:129;6671:12;:10;:12::i;:::-;6685:7;6694:96;6733:15;6694:96;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6694:96:3;;;:11;:25;6706:12;:10;:12::i;:::-;-1:-1:-1;;;;;6694:25:3;;;;;;;;;;;;;;;;;-1:-1:-1;6694:25:3;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;4080:155::-;4149:4;4165:42;4175:12;:10;:12::i;:::-;4189:9;4200:6;4165:9;:42::i;2288:226::-;1398:7;:5;:7::i;:::-;-1:-1:-1;;;;;1382:23:3;:12;:10;:12::i;:::-;-1:-1:-1;;;;;1382:23:3;;:41;;;-1:-1:-1;1410:13:3;;-1:-1:-1;;;1410:13:3;;;;1409:14;1382:41;1374:50;;;;;;;;2401:17;;;;:5;;:17;;;;;:::i;:::-;-1:-1:-1;2428:21:3;;;;:7;;:21;;;;;:::i;:::-;-1:-1:-1;2463:13:3;;-1:-1:-1;;;2463:13:3;;;;:22;;2460:47;;2487:13;:20;;-1:-1:-1;;;;;;2487:20:3;-1:-1:-1;;;2487:20:3;;;2288:226;;:::o;4293:134::-;-1:-1:-1;;;;;4392:19:3;;;4366:7;4392:19;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;4293:134::o;2154:128::-;1301:7;:5;:7::i;:::-;-1:-1:-1;;;;;1285:23:3;:12;:10;:12::i;:::-;-1:-1:-1;;;;;1285:23:3;;1277:32;;;;;;-1:-1:-1;;;;;2225:21:3;;;;2217:30;;;;;;2258:7;:17;;-1:-1:-1;;;;;;2258:17:3;-1:-1:-1;;;;;2258:17:3;;;;;;;;;;2154:128::o;788:96:0:-;867:10;788:96;:::o;9635:336:3:-;-1:-1:-1;;;;;9729:20:3;;;;9721:69;;;;;-1:-1:-1;;;;;9721:69:3;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9721:69:3;;;;;;;;;;;;;;;-1:-1:-1;;;;;9808:21:3;;;;9800:68;;;;;-1:-1:-1;;;;;9800:68:3;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9800:68:3;;;;;;;;;;;;;;;-1:-1:-1;;;;;9879:19:3;;;;;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;:37;;;9931:33;;;;;;;;;;;;;;;;;9635:336;;;:::o;7293:464::-;-1:-1:-1;;;;;7390:20:3;;;;7382:70;;;;;-1:-1:-1;;;;;7382:70:3;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7382:70:3;;;;;;;;;;;;;;;-1:-1:-1;;;;;7470:23:3;;;;7462:71;;;;;-1:-1:-1;;;;;7462:71:3;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7462:71:3;;;;;;;;;;;;;;;7564;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7564:71:3;;;;-1:-1:-1;;;;;7564:17:3;;-1:-1:-1;7564:17:3;;;;;;;;;;;;:71;;7586:6;;7564:71;:21;:71;:::i;:::-;-1:-1:-1;;;;;7544:17:3;;;:9;:17;;;;;;;;;;;:91;;;;7668:20;;;;;;;:32;;7693:6;7668:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;7645:20:3;;;:9;:20;;;;;;;;;;;;:55;;;;7715:35;;;;;;;7645:20;;7715:35;;;;-1:-1:-1;;;;;;;;;;;7715:35:3;;;;;;;;7293:464;;;:::o;1735:187:2:-;1821:7;1856:12;1848:6;;;;1840:29;;;;-1:-1:-1;;;;;1840:29:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1840:29:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1891:5:2;;;1735:187::o;837:176::-;895:7;926:5;;;949:6;;;;941:46;;;;;-1:-1:-1;;;;;941:46:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1005:1;837:176;-1:-1:-1;;;837:176:2:o;8137:302:3:-;-1:-1:-1;;;;;8212:21:3;;;;8204:65;;;;;-1:-1:-1;;;;;8204:65:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;8295:12;;:24;;8312:6;8295:24;:16;:24;:::i;:::-;8280:12;:39;-1:-1:-1;;;;;8350:18:3;;:9;:18;;;;;;;;;;;:30;;8373:6;8350:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;8329:18:3;;:9;:18;;;;;;;;;;;:51;;;;8395:37;;;;;;;8329:18;;:9;;-1:-1:-1;;;;;;;;;;;8395:37:3;;;;;;;;;8137:302;;:::o;8868:342::-;-1:-1:-1;;;;;8943:21:3;;;;8935:67;;;;;-1:-1:-1;;;;;8935:67:3;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8935:67:3;;;;;;;;;;;;;;;9034:68;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9034:68:3;;;;-1:-1:-1;;;;;9034:18:3;;-1:-1:-1;9034:18:3;;;;;;;;;;;;:68;;9057:6;;9034:68;:22;:68;:::i;:::-;-1:-1:-1;;;;;9013:18:3;;:9;:18;;;;;;;;;;:89;9127:12;;:24;;9144:6;9127:24;:16;:24;:::i;:::-;9112:12;:39;9166:37;;;;;;;;9192:1;;-1:-1:-1;;;;;9166:37:3;;;-1:-1:-1;;;;;;;;;;;9166:37:3;;;;;;;;8868:342;;:::o;1277:134:2:-;1335:7;1361:43;1365:1;1368;1361:43;;;;;;;;;;;;;;;;;;:3;:43::i;96:9877:3:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;96:9877:3;;;-1:-1:-1;96:9877:3;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;

Swarm Source

bzzr://4b954bc343bac6b2255ea0054aeedaf70caf100d351c8289472d7175519b4e67
Loading