ERC-20
Overview
Max Total Supply
8,537,500 STKTST
Holders
4
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
556,500 STKTSTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ERC677MultiBridgeToken
Compiler Version
v0.5.10+commit.5a6ea5b1
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-04-14 */ pragma solidity 0.5.10; /** * @dev Collection of functions related to the address type, */ library Address { /** * @dev Returns true if `account` is a contract. * * This test is non-exhaustive, and there may be false-negatives: during the * execution of a contract's constructor, its address will be reported as * not containing a contract. * * > It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } } interface IDistribution { function supply() external view returns(uint256); function poolAddress(uint8) external view returns(address); } contract Sacrifice { constructor(address payable _recipient) public payable { selfdestruct(_recipient); } } interface IERC677MultiBridgeToken { function transfer(address _to, uint256 _value) external returns (bool); function transferDistribution(address _to, uint256 _value) external returns (bool); function transferFrom(address _from, address _to, uint256 _value) external returns (bool); function balanceOf(address _account) external view returns (uint256); } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be aplied to your functions to restrict their use to * the owner. */ contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { _owner = msg.sender; emit OwnershipTransferred(address(0), _owner); } /** * @dev Returns the address of the current 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"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return msg.sender == _owner; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * > Note: 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 Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see `ERC20Detailed`. */ 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. * * > 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); } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, "SafeMath: division by zero"); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0, "SafeMath: modulo by zero"); return a % b; } } /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. // A Solidity high level call has three parts: // 1. The target address is checked to verify it contains contract code // 2. The call itself is made, and success asserted // 3. The return value is decoded, which in turn checks the size of the returned data. // solhint-disable-next-line max-line-length require(address(token).isContract(), "SafeERC20: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = address(token).call(data); require(success, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } /** * @dev Implementation of the `IERC20` interface. * * This implementation was taken from * https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v2.3.0/contracts/token/ERC20/ERC20.sol * This differs from the original one only in the definition for the `_balances` * mapping: we made it `internal` instead of `private` since we use the `_balances` * in the `ERC677BridgeToken` child contract to be able to transfer tokens to address(0) * (see its `_superTransfer` function). The original OpenZeppelin implementation * doesn't allow transferring to address(0). * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using `_mint`. * For a generic mechanism see `ERC20Mintable`. * * *For a detailed writeup see our guide [How to implement supply * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).* * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an `Approval` event is emitted on calls to `transferFrom`. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard `decreaseAllowance` and `increaseAllowance` * functions have been added to mitigate the well-known issues around setting * allowances. See `IERC20.approve`. */ contract ERC20 is IERC20 { using SafeMath for uint256; mapping (address => uint256) internal _balances; // CHANGED: not private to write a custom transfer method mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @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(msg.sender, 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 value) public returns (bool) { _approve(msg.sender, spender, value); 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 `value`. * - 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, msg.sender, _allowances[sender][msg.sender].sub(amount)); 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(msg.sender, spender, _allowances[msg.sender][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(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue)); 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); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, 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); } /** * @dev Destoys `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 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 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 value) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = value; emit Approval(owner, spender, value); } /** * @dev Destoys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See `_burn` and `_approve`. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount)); } } /** * @dev Optional functions from the ERC20 standard. */ contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol, uint8 decimals) public { _name = name; _symbol = symbol; _decimals = decimals; } /** * @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. * * > Note that 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; } } /** * @title ERC20Permittable * @dev This is ERC20 contract extended by the `permit` function (see EIP712). */ contract ERC20Permittable is ERC20, ERC20Detailed { string public constant version = "1"; // EIP712 niceties bytes32 public DOMAIN_SEPARATOR; // bytes32 public constant PERMIT_TYPEHASH = keccak256("Permit(address holder,address spender,uint256 nonce,uint256 expiry,bool allowed)"); bytes32 public constant PERMIT_TYPEHASH = 0xea2aa0a1be11a07ed86d755c93467f4f82362b452371d1ba94d1715123511acb; mapping(address => uint256) public nonces; mapping(address => mapping(address => uint256)) public expirations; constructor( string memory _name, string memory _symbol, uint8 _decimals ) ERC20Detailed(_name, _symbol, _decimals) public { DOMAIN_SEPARATOR = keccak256(abi.encode( keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"), keccak256(bytes(_name)), keccak256(bytes(version)), 1, // Chain ID for Ethereum Mainnet address(this) )); } /// @dev transferFrom in this contract works in a slightly different form than the generic /// transferFrom function. This contract allows for "unlimited approval". /// Should the user approve an address for the maximum uint256 value, /// then that address will have unlimited approval until told otherwise. /// @param _sender The address of the sender. /// @param _recipient The address of the recipient. /// @param _amount The value to transfer. /// @return Success status. function transferFrom(address _sender, address _recipient, uint256 _amount) public returns (bool) { _transfer(_sender, _recipient, _amount); if (_sender != msg.sender) { uint256 allowedAmount = allowance(_sender, msg.sender); if (allowedAmount != uint256(-1)) { // If allowance is limited, adjust it. // In this case `transferFrom` works like the generic _approve(_sender, msg.sender, allowedAmount.sub(_amount)); } else { // If allowance is unlimited by `permit`, `approve`, or `increaseAllowance` // function, don't adjust it. But the expiration date must be empty or in the future require( expirations[_sender][msg.sender] == 0 || expirations[_sender][msg.sender] >= _now(), "expiry is in the past" ); } } else { // If `_sender` is `msg.sender`, // the function works just like `transfer()` } return true; } /// @dev An alias for `transfer` function. /// @param _to The address of the recipient. /// @param _amount The value to transfer. function push(address _to, uint256 _amount) public { transferFrom(msg.sender, _to, _amount); } /// @dev Makes a request to transfer the specified amount /// from the specified address to the caller's address. /// @param _from The address of the holder. /// @param _amount The value to transfer. function pull(address _from, uint256 _amount) public { transferFrom(_from, msg.sender, _amount); } /// @dev An alias for `transferFrom` function. /// @param _from The address of the sender. /// @param _to The address of the recipient. /// @param _amount The value to transfer. function move(address _from, address _to, uint256 _amount) public { transferFrom(_from, _to, _amount); } /// @dev Allows to spend holder's unlimited amount by the specified spender. /// The function can be called by anyone, but requires having allowance parameters /// signed by the holder according to EIP712. /// @param _holder The holder's address. /// @param _spender The spender's address. /// @param _nonce The nonce taken from `nonces(_holder)` public getter. /// @param _expiry The allowance expiration date (unix timestamp in UTC). /// Can be zero for no expiration. Forced to zero if `_allowed` is `false`. /// @param _allowed True to enable unlimited allowance for the spender by the holder. False to disable. /// @param _v A final byte of signature (ECDSA component). /// @param _r The first 32 bytes of signature (ECDSA component). /// @param _s The second 32 bytes of signature (ECDSA component). function permit( address _holder, address _spender, uint256 _nonce, uint256 _expiry, bool _allowed, uint8 _v, bytes32 _r, bytes32 _s ) external { require(_expiry == 0 || _now() <= _expiry, "invalid expiry"); bytes32 digest = keccak256(abi.encodePacked( "\x19\x01", DOMAIN_SEPARATOR, keccak256(abi.encode( PERMIT_TYPEHASH, _holder, _spender, _nonce, _expiry, _allowed )) )); require(_holder == ecrecover(digest, _v, _r, _s), "invalid signature or parameters"); require(_nonce == nonces[_holder]++, "invalid nonce"); uint256 amount = _allowed ? uint256(-1) : 0; _approve(_holder, _spender, amount); expirations[_holder][_spender] = _allowed ? _expiry : 0; } function _now() internal view returns(uint256) { return now; } } // This is a base staking token ERC677 contract for Ethereum Mainnet side // which is derived by the child ERC677MultiBridgeToken contract. contract ERC677BridgeToken is Ownable, ERC20Permittable { using SafeERC20 for ERC20; using Address for address; /// @dev Distribution contract address. address public distributionAddress; /// @dev The PrivateOffering contract address. address public privateOfferingDistributionAddress; /// @dev The AdvisorsReward contract address. address public advisorsRewardDistributionAddress; /// @dev Mint event. /// @param to To address. /// @param amount Minted value. event Mint(address indexed to, uint256 amount); /// @dev Modified Transfer event with custom data. /// @param from From address. /// @param to To address. /// @param value Transferred value. /// @param data Custom data to call after transfer. event Transfer(address indexed from, address indexed to, uint256 value, bytes data); /// @dev Emits if custom call after transfer fails. /// @param from From address. /// @param to To address. /// @param value Transferred value. event ContractFallbackCallFailed(address from, address to, uint256 value); /// @dev Checks that the recipient address is valid. /// @param _recipient Recipient address. modifier validRecipient(address _recipient) { require(_recipient != address(0) && _recipient != address(this), "not a valid recipient"); _; } /// @dev Reverts if called by any account other than the bridge. modifier onlyBridge() { require(isBridge(msg.sender), "caller is not the bridge"); _; } /// @dev Creates a token and mints the whole supply for the Distribution contract. /// @param _name Token name. /// @param _symbol Token symbol. /// @param _distributionAddress The address of the deployed Distribution contract. /// @param _privateOfferingDistributionAddress The address of the PrivateOffering contract. /// @param _advisorsRewardDistributionAddress The address of the AdvisorsReward contract. constructor( string memory _name, string memory _symbol, address _distributionAddress, address _privateOfferingDistributionAddress, address _advisorsRewardDistributionAddress ) ERC20Permittable(_name, _symbol, 18) public { require( _distributionAddress.isContract() && _privateOfferingDistributionAddress.isContract() && _advisorsRewardDistributionAddress.isContract(), "not a contract address" ); uint256 supply = IDistribution(_distributionAddress).supply(); require(supply > 0, "the supply must be more than 0"); _mint(_distributionAddress, supply); distributionAddress = _distributionAddress; privateOfferingDistributionAddress = _privateOfferingDistributionAddress; advisorsRewardDistributionAddress = _advisorsRewardDistributionAddress; emit Mint(_distributionAddress, supply); } /// @dev Checks if given address is included into bridge contracts list. /// Implemented by a child contract. /// @param _address Bridge contract address. /// @return bool true, if given address is a known bridge contract. function isBridge(address _address) public view returns (bool); /// @dev Extends transfer method with callback. /// @param _to The address of the recipient. /// @param _value The value to transfer. /// @param _data Custom data. /// @return Success status. function transferAndCall( address _to, uint256 _value, bytes calldata _data ) external validRecipient(_to) returns (bool) { _superTransfer(_to, _value); emit Transfer(msg.sender, _to, _value, _data); if (_to.isContract()) { require(_contractFallback(msg.sender, _to, _value, _data), "contract call failed"); } return true; } /// @dev Extends transfer method with event when the callback failed. /// @param _to The address of the recipient. /// @param _value The value to transfer. /// @return Success status. function transfer(address _to, uint256 _value) public returns (bool) { _superTransfer(_to, _value); _callAfterTransfer(msg.sender, _to, _value); return true; } /// @dev This is a copy of `transfer` function which can only be called by distribution contracts. /// Made to get rid of `onTokenTransfer` calling to save gas when distributing tokens. /// @param _to The address of the recipient. /// @param _value The value to transfer. /// @return Success status. function transferDistribution(address _to, uint256 _value) public returns (bool) { require( msg.sender == distributionAddress || msg.sender == privateOfferingDistributionAddress || msg.sender == advisorsRewardDistributionAddress, "wrong sender" ); _superTransfer(_to, _value); return true; } /// @dev Extends transferFrom method with event when the callback failed. /// @param _from The address of the sender. /// @param _to The address of the recipient. /// @param _value The value to transfer. /// @return Success status. function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { _superTransferFrom(_from, _to, _value); _callAfterTransfer(_from, _to, _value); return true; } /// @dev If someone sent eth/tokens to the contract mistakenly then the owner can send them back. /// @param _token The token address to transfer. /// @param _to The address of the recipient. function claimTokens(address _token, address payable _to) public onlyOwner validRecipient(_to) { if (_token == address(0)) { uint256 value = address(this).balance; if (!_to.send(value)) { // solium-disable-line security/no-send // We use the `Sacrifice` trick to be sure the coins can be 100% sent to the receiver. // Otherwise, if the receiver is a contract which has a revert in its fallback function, // the sending will fail. (new Sacrifice).value(value)(_to); } } else { ERC20 token = ERC20(_token); uint256 balance = token.balanceOf(address(this)); token.safeTransfer(_to, balance); } } /// @dev Creates `amount` tokens and assigns them to `account`, increasing /// the total supply. Emits a `Transfer` event with `from` set to the zero address. /// Can only be called by a bridge contract which address is set with `addBridge`. /// @param _account The address to mint tokens for. Cannot be zero address. /// @param _amount The amount of tokens to mint. function mint(address _account, uint256 _amount) external onlyBridge returns(bool) { _mint(_account, _amount); emit Mint(_account, _amount); return true; } /// @dev The removed implementation of the ownership renouncing. function renounceOwnership() public onlyOwner { revert("not implemented"); } /// @dev Calls transfer method and reverts if it fails. /// @param _to The address of the recipient. /// @param _value The value to transfer. function _superTransfer(address _to, uint256 _value) internal { bool success; if ( msg.sender == distributionAddress || msg.sender == privateOfferingDistributionAddress || msg.sender == advisorsRewardDistributionAddress ) { // Allow sending tokens to `address(0)` by // Distribution, PrivateOffering, or AdvisorsReward contract _balances[msg.sender] = _balances[msg.sender].sub(_value); _balances[_to] = _balances[_to].add(_value); emit Transfer(msg.sender, _to, _value); success = true; } else { success = super.transfer(_to, _value); } require(success, "transfer failed"); } /// @dev Calls transferFrom method and reverts if it fails. /// @param _from The address of the sender. /// @param _to The address of the recipient. /// @param _value The value to transfer. function _superTransferFrom(address _from, address _to, uint256 _value) internal { bool success = super.transferFrom(_from, _to, _value); require(success, "transfer failed"); } /// @dev Emits an event when the callback failed. /// @param _from The address of the sender. /// @param _to The address of the recipient. /// @param _value The transferred value. function _callAfterTransfer(address _from, address _to, uint256 _value) internal { if (_to.isContract() && !_contractFallback(_from, _to, _value, new bytes(0))) { require(!isBridge(_to), "you can't transfer to bridge contract"); require(_to != distributionAddress, "you can't transfer to Distribution contract"); require(_to != privateOfferingDistributionAddress, "you can't transfer to PrivateOffering contract"); require(_to != advisorsRewardDistributionAddress, "you can't transfer to AdvisorsReward contract"); emit ContractFallbackCallFailed(_from, _to, _value); } } /// @dev Makes a callback after the transfer of tokens. /// @param _from The address of the sender. /// @param _to The address of the recipient. /// @param _value The transferred value. /// @param _data Custom data. /// @return Success status. function _contractFallback( address _from, address _to, uint256 _value, bytes memory _data ) private returns (bool) { string memory signature = "onTokenTransfer(address,uint256,bytes)"; // solium-disable-next-line security/no-low-level-calls (bool success, ) = _to.call(abi.encodeWithSignature(signature, _from, _value, _data)); return success; } } /** * @title ERC677MultiBridgeToken * @dev This contract extends ERC677BridgeToken to support several bridges simultaneously. */ contract ERC677MultiBridgeToken is IERC677MultiBridgeToken, ERC677BridgeToken { address public constant F_ADDR = 0xFFfFfFffFFfffFFfFFfFFFFFffFFFffffFfFFFfF; uint256 internal constant MAX_BRIDGES = 50; mapping(address => address) public bridgePointers; uint256 public bridgeCount; event BridgeAdded(address indexed bridge); event BridgeRemoved(address indexed bridge); constructor( string memory _name, string memory _symbol, address _distributionAddress, address _privateOfferingDistributionAddress, address _advisorsRewardDistributionAddress ) public ERC677BridgeToken( _name, _symbol, _distributionAddress, _privateOfferingDistributionAddress, _advisorsRewardDistributionAddress ) { bridgePointers[F_ADDR] = F_ADDR; // empty bridge contracts list } /// @dev Adds one more bridge contract into the list. /// @param _bridge Bridge contract address. function addBridge(address _bridge) external onlyOwner { require(bridgeCount < MAX_BRIDGES, "can't add one more bridge due to a limit"); require(_bridge.isContract(), "not a contract address"); require(!isBridge(_bridge), "bridge already exists"); address firstBridge = bridgePointers[F_ADDR]; require(firstBridge != address(0), "first bridge is zero address"); bridgePointers[F_ADDR] = _bridge; bridgePointers[_bridge] = firstBridge; bridgeCount = bridgeCount.add(1); emit BridgeAdded(_bridge); } /// @dev Removes one existing bridge contract from the list. /// @param _bridge Bridge contract address. function removeBridge(address _bridge) external onlyOwner { require(isBridge(_bridge), "bridge isn't existed"); address nextBridge = bridgePointers[_bridge]; address index = F_ADDR; address next = bridgePointers[index]; require(next != address(0), "zero address found"); while (next != _bridge) { index = next; next = bridgePointers[index]; require(next != F_ADDR && next != address(0), "invalid address found"); } bridgePointers[index] = nextBridge; delete bridgePointers[_bridge]; bridgeCount = bridgeCount.sub(1); emit BridgeRemoved(_bridge); } /// @dev Returns all recorded bridge contract addresses. /// @return address[] Bridge contract addresses. function bridgeList() external view returns (address[] memory) { address[] memory list = new address[](bridgeCount); uint256 counter = 0; address nextBridge = bridgePointers[F_ADDR]; require(nextBridge != address(0), "zero address found"); while (nextBridge != F_ADDR) { list[counter] = nextBridge; nextBridge = bridgePointers[nextBridge]; counter++; require(nextBridge != address(0), "zero address found"); } return list; } /// @dev Checks if given address is included into bridge contracts list. /// @param _address Bridge contract address. /// @return bool true, if given address is a known bridge contract. function isBridge(address _address) public view returns (bool) { return _address != F_ADDR && bridgePointers[_address] != address(0); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":false,"inputs":[{"name":"_bridge","type":"address"}],"name":"removeBridge","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferDistribution","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"distributionAddress","outputs":[{"name":"","type":"address"}],"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":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transferAndCall","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"bridgePointers","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"},{"name":"_to","type":"address"}],"name":"claimTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"advisorsRewardDistributionAddress","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":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_address","type":"address"}],"name":"isBridge","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"privateOfferingDistributionAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"nonces","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":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_holder","type":"address"},{"name":"_spender","type":"address"},{"name":"_nonce","type":"uint256"},{"name":"_expiry","type":"uint256"},{"name":"_allowed","type":"bool"},{"name":"_v","type":"uint8"},{"name":"_r","type":"bytes32"},{"name":"_s","type":"bytes32"}],"name":"permit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_bridge","type":"address"}],"name":"addBridge","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"bridgeList","outputs":[{"name":"","type":"address[]"}],"payable":false,"stateMutability":"view","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":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"push","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"move","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"F_ADDR","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_amount","type":"uint256"}],"name":"pull","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"bridgeCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"expirations","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_distributionAddress","type":"address"},{"name":"_privateOfferingDistributionAddress","type":"address"},{"name":"_advisorsRewardDistributionAddress","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"bridge","type":"address"}],"name":"BridgeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"bridge","type":"address"}],"name":"BridgeRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"data","type":"bytes"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"from","type":"address"},{"indexed":false,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"ContractFallbackCallFailed","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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200301638038062003016833981810160405260a08110156200003757600080fd5b8101908080516401000000008111156200005057600080fd5b820160208101848111156200006457600080fd5b81516401000000008111828201871017156200007f57600080fd5b505092919060200180516401000000008111156200009c57600080fd5b82016020810184811115620000b057600080fd5b8151640100000000811182820187101715620000cb57600080fd5b50506020820151604080840151606090940151600080546001600160a01b031916331780825592519497509295509287928792879287928792879287926012928592859285926001600160a01b0316917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a382516200015590600490602086019062000664565b5081516200016b90600590602085019062000664565b506006805460ff191660ff92909216919091179055505060405180605262002fc48239604080519182900360520182208651602097880120838301835260018085527f310000000000000000000000000000000000000000000000000000000000000094890194909452825180890192909252818301527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6606082015260808101929092523060a0808401919091528151808403909101815260c090920190528051908501206007555062000257926001600160a01b038716925062001e46620004c3821b17901c9050565b80156200027e57506200027e826001600160a01b0316620004c360201b62001e461760201c565b8015620002a55750620002a5816001600160a01b0316620004c360201b62001e461760201c565b6200031157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f6e6f74206120636f6e7472616374206164647265737300000000000000000000604482015290519081900360640190fd5b6000836001600160a01b031663047fc9aa6040518163ffffffff1660e01b815260040160206040518083038186803b1580156200034d57600080fd5b505afa15801562000362573d6000803e3d6000fd5b505050506040513d60208110156200037957600080fd5b5051905080620003ea57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f74686520737570706c79206d757374206265206d6f7265207468616e20300000604482015290519081900360640190fd5b620003ff84826001600160e01b03620004c916565b600a80546001600160a01b038087166001600160a01b03199283168117909355600b8054878316908416179055600c8054918616919092161790556040805183815290517f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859181900360200190a250506001600160a01b036000819052600d6020527fa934977eb9828ba1f50591af02c98441645b4f0e916e0fecb4cc8e9c633dade280546001600160a01b03191690911790555062000709975050505050505050565b3b151590565b6001600160a01b0382166200053f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200055b81600354620005e860201b62001de51790919060201c565b6003556001600160a01b0382166000908152600160209081526040909120546200059091839062001de5620005e8821b17901c565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000828201838110156200065d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006a757805160ff1916838001178555620006d7565b82800160010185558215620006d7579182015b82811115620006d7578251825591602001919060010190620006ba565b50620006e5929150620006e9565b5090565b6200070691905b80821115620006e55760008155600101620006f0565b90565b6128ab80620007196000396000f3fe608060405234801561001057600080fd5b50600436106102325760003560e01c8063726600ce11610130578063a457c2d7116100b8578063dd62ed3e1161007c578063dd62ed3e1461075f578063f2d5d56b1461078d578063f2fde38b146107b9578063fbb2a53f146107df578063ff9e884d146107e757610232565b8063a457c2d71461069d578063a9059cbb146106c9578063b753a98c146106f5578063bb35783b14610721578063c794c7691461075757610232565b80638f32d59b116100ff5780638f32d59b146105b55780638fcbaf0c146105bd57806395d89b41146106175780639712fdf81461061f5780639da38e2f1461064557610232565b8063726600ce146105595780637a13685a1461057f5780637ecebe00146105875780638da5cb5b146105ad57610232565b806337fb7e21116101be57806354fd4d501161018257806354fd4d50146104ed57806369ffa08a146104f55780636e15d21b1461052357806370a082311461052b578063715018a61461055157610232565b806337fb7e21146103c657806339509351146103ea5780634000aea01461041657806340c10f191461049b5780634bcb88bc146104c757610232565b8063238a3fe111610205578063238a3fe11461033657806323b872dd1461036257806330adf81f14610398578063313ce567146103a05780633644e515146103be57610232565b806304df017d1461023757806306fdde031461025f578063095ea7b3146102dc57806318160ddd1461031c575b600080fd5b61025d6004803603602081101561024d57600080fd5b50356001600160a01b0316610815565b005b610267610a56565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102a1578181015183820152602001610289565b50505050905090810190601f1680156102ce5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610308600480360360408110156102f257600080fd5b506001600160a01b038135169060200135610aec565b604080519115158252519081900360200190f35b610324610b02565b60408051918252519081900360200190f35b6103086004803603604081101561034c57600080fd5b506001600160a01b038135169060200135610b08565b6103086004803603606081101561037857600080fd5b506001600160a01b03813581169160208101359091169060400135610b8d565b610324610baf565b6103a8610bd3565b6040805160ff9092168252519081900360200190f35b610324610bdc565b6103ce610be2565b604080516001600160a01b039092168252519081900360200190f35b6103086004803603604081101561040057600080fd5b506001600160a01b038135169060200135610bf1565b6103086004803603606081101561042c57600080fd5b6001600160a01b038235169160208101359181019060608101604082013564010000000081111561045c57600080fd5b82018360208201111561046e57600080fd5b8035906020019184600183028401116401000000008311171561049057600080fd5b509092509050610c32565b610308600480360360408110156104b157600080fd5b506001600160a01b038135169060200135610dd2565b6103ce600480360360208110156104dd57600080fd5b50356001600160a01b0316610e80565b610267610e9b565b61025d6004803603604081101561050b57600080fd5b506001600160a01b0381358116916020013516610eb8565b6103ce611083565b6103246004803603602081101561054157600080fd5b50356001600160a01b0316611092565b61025d6110ad565b6103086004803603602081101561056f57600080fd5b50356001600160a01b0316611133565b6103ce61116d565b6103246004803603602081101561059d57600080fd5b50356001600160a01b031661117c565b6103ce61118e565b61030861119d565b61025d60048036036101008110156105d457600080fd5b506001600160a01b038135811691602081013590911690604081013590606081013590608081013515159060ff60a0820135169060c08101359060e001356111ae565b610267611446565b61025d6004803603602081101561063557600080fd5b50356001600160a01b03166114a7565b61064d6116e6565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610689578181015183820152602001610671565b505050509050019250505060405180910390f35b610308600480360360408110156106b357600080fd5b506001600160a01b03813516906020013561182a565b610308600480360360408110156106df57600080fd5b506001600160a01b038135169060200135611866565b61025d6004803603604081101561070b57600080fd5b506001600160a01b03813516906020013561187d565b61025d6004803603606081101561073757600080fd5b506001600160a01b03813581169160208101359091169060400135611888565b6103ce611899565b6103246004803603604081101561077557600080fd5b506001600160a01b03813581169160200135166118a4565b61025d600480360360408110156107a357600080fd5b506001600160a01b0381351690602001356118cf565b61025d600480360360208110156107cf57600080fd5b50356001600160a01b03166118da565b61032461192d565b610324600480360360408110156107fd57600080fd5b506001600160a01b0381358116916020013516611933565b61081d61119d565b61085c576040805162461bcd60e51b8152602060048201819052602482015260008051602061273b833981519152604482015290519081900360640190fd5b61086581611133565b6108ad576040805162461bcd60e51b8152602060048201526014602482015273189c9a5919d9481a5cdb89dd08195e1a5cdd195960621b604482015290519081900360640190fd5b6001600160a01b038082166000908152600d6020526040812054908290526000805160206126cb833981519152549082169190811680610929576040805162461bcd60e51b81526020600482015260126024820152711e995c9bc81859191c995cdcc8199bdd5b9960721b604482015290519081900360640190fd5b836001600160a01b0316816001600160a01b0316146109c8576001600160a01b038082166000908152600d602052604090205491925090811690811480159061097a57506001600160a01b03811615155b6109c3576040805162461bcd60e51b81526020600482015260156024820152741a5b9d985b1a59081859191c995cdcc8199bdd5b99605a1b604482015290519081900360640190fd5b610929565b6001600160a01b038083166000908152600d602052604080822080548488166001600160a01b0319918216179091559287168252902080549091169055600e54610a1990600163ffffffff61195016565b600e556040516001600160a01b038516907f5d9d5034656cb3ebfb0655057cd7f9b4077a9b42ff42ce223cbac5bc586d212690600090a250505050565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ae25780601f10610ab757610100808354040283529160200191610ae2565b820191906000526020600020905b815481529060010190602001808311610ac557829003601f168201915b5050505050905090565b6000610af93384846119ad565b50600192915050565b60035490565b600a546000906001600160a01b0316331480610b2e5750600b546001600160a01b031633145b80610b435750600c546001600160a01b031633145b610b83576040805162461bcd60e51b815260206004820152600c60248201526b3bb937b7339039b2b73232b960a11b604482015290519081900360640190fd5b610af98383611a99565b6000610b9a848484611bd9565b610ba5848484611c2c565b5060019392505050565b7fea2aa0a1be11a07ed86d755c93467f4f82362b452371d1ba94d1715123511acb81565b60065460ff1690565b60075481565b600a546001600160a01b031681565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610af9918590610c2d908663ffffffff611de516565b6119ad565b6000846001600160a01b03811615801590610c5657506001600160a01b0381163014155b610c9f576040805162461bcd60e51b81526020600482015260156024820152741b9bdd0818481d985b1a59081c9958da5c1a595b9d605a1b604482015290519081900360640190fd5b610ca98686611a99565b856001600160a01b0316336001600160a01b03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1687878760405180848152602001806020018281038252848482818152602001925080828437600083820152604051601f909101601f1916909201829003965090945050505050a3610d37866001600160a01b0316611e46565b15610dc657610d7e33878787878080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611e4c92505050565b610dc6576040805162461bcd60e51b815260206004820152601460248201527318dbdb9d1c9858dd0818d85b1b0819985a5b195960621b604482015290519081900360640190fd5b50600195945050505050565b6000610ddd33611133565b610e2e576040805162461bcd60e51b815260206004820152601860248201527f63616c6c6572206973206e6f7420746865206272696467650000000000000000604482015290519081900360640190fd5b610e388383612039565b6040805183815290516001600160a01b038516917f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885919081900360200190a250600192915050565b600d602052600090815260409020546001600160a01b031681565b604051806040016040528060018152602001603160f81b81525081565b610ec061119d565b610eff576040805162461bcd60e51b8152602060048201819052602482015260008051602061273b833981519152604482015290519081900360640190fd5b806001600160a01b03811615801590610f2157506001600160a01b0381163014155b610f6a576040805162461bcd60e51b81526020600482015260156024820152741b9bdd0818481d985b1a59081c9958da5c1a595b9d605a1b604482015290519081900360640190fd5b6001600160a01b038316610fe8576040513031906001600160a01b0384169082156108fc029083906000818181858888f19350505050610fe2578083604051610fb290612621565b6001600160a01b039091168152604051908190036020019082f080158015610fde573d6000803e3d6000fd5b5050505b5061107e565b604080516370a0823160e01b8152306004820152905184916000916001600160a01b038416916370a08231916024808301926020929190829003018186803b15801561103357600080fd5b505afa158015611047573d6000803e3d6000fd5b505050506040513d602081101561105d57600080fd5b5051905061107b6001600160a01b038316858363ffffffff61212b16565b50505b505050565b600c546001600160a01b031681565b6001600160a01b031660009081526001602052604090205490565b6110b561119d565b6110f4576040805162461bcd60e51b8152602060048201819052602482015260008051602061273b833981519152604482015290519081900360640190fd5b6040805162461bcd60e51b815260206004820152600f60248201526e1b9bdd081a5b5c1b195b595b9d1959608a1b604482015290519081900360640190fd5b60006001600160a01b038281161480159061116757506001600160a01b038281166000908152600d60205260409020541615155b92915050565b600b546001600160a01b031681565b60086020526000908152604090205481565b6000546001600160a01b031690565b6000546001600160a01b0316331490565b8415806111c25750846111bf61217d565b11155b611204576040805162461bcd60e51b815260206004820152600e60248201526d696e76616c69642065787069727960901b604482015290519081900360640190fd5b600754604080517fea2aa0a1be11a07ed86d755c93467f4f82362b452371d1ba94d1715123511acb6020808301919091526001600160a01b03808d16838501528b166060830152608082018a905260a0820189905287151560c0808401919091528351808403909101815260e08301845280519082012061190160f01b610100840152610102830194909452610122808301949094528251808303909401845261014282018084528451948201949094206000909452610162820180845284905260ff87166101828301526101a282018690526101c2820185905291516001926101e2808401939192601f1981019281900390910190855afa15801561130e573d6000803e3d6000fd5b505050602060405103516001600160a01b0316896001600160a01b03161461137d576040805162461bcd60e51b815260206004820152601f60248201527f696e76616c6964207369676e6174757265206f7220706172616d657465727300604482015290519081900360640190fd5b6001600160a01b038916600090815260086020526040902080546001810190915587146113e1576040805162461bcd60e51b815260206004820152600d60248201526c696e76616c6964206e6f6e636560981b604482015290519081900360640190fd5b6000856113ef5760006113f3565b6000195b90506114008a8a836119ad565b8561140c57600061140e565b865b6001600160a01b039a8b1660009081526009602090815260408083209c909d1682529a909a5299909820989098555050505050505050565b60058054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ae25780601f10610ab757610100808354040283529160200191610ae2565b6114af61119d565b6114ee576040805162461bcd60e51b8152602060048201819052602482015260008051602061273b833981519152604482015290519081900360640190fd5b6032600e541061152f5760405162461bcd60e51b81526004018080602001828103825260288152602001806127816028913960400191505060405180910390fd5b611541816001600160a01b0316611e46565b61158b576040805162461bcd60e51b81526020600482015260166024820152756e6f74206120636f6e7472616374206164647265737360501b604482015290519081900360640190fd5b61159481611133565b156115de576040805162461bcd60e51b815260206004820152601560248201527462726964676520616c72656164792065786973747360581b604482015290519081900360640190fd5b6001600160a01b036000819052600d6020526000805160206126cb833981519152541680611653576040805162461bcd60e51b815260206004820152601c60248201527f666972737420627269646765206973207a65726f206164647265737300000000604482015290519081900360640190fd5b600d6020526000805160206126cb83398151915280546001600160a01b03199081166001600160a01b038581169182179093556000908152604090208054909116918316919091179055600e546116ab906001611de5565b600e556040516001600160a01b038316907f3cda433c5679ae4c6a5dea50840e222a42cba3695e4663de4366be899348422190600090a25050565b606080600e54604051908082528060200260200182016040528015611715578160200160208202803883390190505b506001600160a01b036000818152600d6020526000805160206126cb83398151915254929350911680611784576040805162461bcd60e51b81526020600482015260126024820152711e995c9bc81859191c995cdcc8199bdd5b9960721b604482015290519081900360640190fd5b6001600160a01b038181161461182257808383815181106117a157fe5b6001600160a01b039283166020918202929092018101919091529181166000908152600d90925260409091205460019290920191168061181d576040805162461bcd60e51b81526020600482015260126024820152711e995c9bc81859191c995cdcc8199bdd5b9960721b604482015290519081900360640190fd5b611784565b509091505090565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610af9918590610c2d908663ffffffff61195016565b60006118728383611a99565b610af9338484611c2c565b61107e338383610b8d565b611893838383610b8d565b50505050565b6001600160a01b0381565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61107e823383610b8d565b6118e261119d565b611921576040805162461bcd60e51b8152602060048201819052602482015260008051602061273b833981519152604482015290519081900360640190fd5b61192a81612181565b50565b600e5481565b600960209081526000928352604080842090915290825290205481565b6000828211156119a7576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6001600160a01b0383166119f25760405162461bcd60e51b81526004018080602001828103825260248152602001806127ce6024913960400191505060405180910390fd5b6001600160a01b038216611a375760405162461bcd60e51b81526004018080602001828103825260228152602001806126a96022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600a546000906001600160a01b0316331480611abf5750600b546001600160a01b031633145b80611ad45750600c546001600160a01b031633145b15611b885733600090815260016020526040902054611af9908363ffffffff61195016565b33600090815260016020526040808220929092556001600160a01b03851681522054611b2b908363ffffffff611de516565b6001600160a01b0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506001611b95565b611b928383612221565b90505b8061107e576040805162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b604482015290519081900360640190fd5b6000611be684848461222e565b905080611893576040805162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b604482015290519081900360640190fd5b611c3e826001600160a01b0316611e46565b8015611c655750604080516000815260208101909152611c6390849084908490611e4c565b155b1561107e57611c7382611133565b15611caf5760405162461bcd60e51b81526004018080602001828103825260258152602001806127166025913960400191505060405180910390fd5b600a546001600160a01b0383811691161415611cfc5760405162461bcd60e51b815260040180806020018281038252602b8152602001806126eb602b913960400191505060405180910390fd5b600b546001600160a01b0383811691161415611d495760405162461bcd60e51b815260040180806020018281038252602e815260200180612849602e913960400191505060405180910390fd5b600c546001600160a01b0383811691161415611d965760405162461bcd60e51b815260040180806020018281038252602d81526020018061281c602d913960400191505060405180910390fd5b604080516001600160a01b0380861682528416602082015280820183905290517f11249f0fc79fc134a15a10d1da8291b79515bf987e036ced05b9ec119614070b9181900360600190a1505050565b600082820183811015611e3f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3b151590565b6000606060405180606001604052806026815260200161275b6026913990506000856001600160a01b03168288878760405160240180846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611ed9578181015183820152602001611ec1565b50505050905090810190601f168015611f065780820380516001836020036101000a031916815260200191505b50945050505050604051602081830303815290604052906040518082805190602001908083835b60208310611f4c5780518252601f199092019160209182019101611f2d565b51815160001960209485036101000a01908116901991909116179052604080519490920184900390932092860180516001600160e01b03166001600160e01b031990941693909317835251855190945084935090508083835b60208310611fc45780518252601f199092019160209182019101611fa5565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612026576040519150601f19603f3d011682016040523d82523d6000602084013e61202b565b606091505b509098975050505050505050565b6001600160a01b038216612094576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6003546120a7908263ffffffff611de516565b6003556001600160a01b0382166000908152600160205260409020546120d3908263ffffffff611de516565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261107e908490612325565b4290565b6001600160a01b0381166121c65760405162461bcd60e51b81526004018080602001828103825260268152602001806126836026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000610af93384846124dd565b600061223b8484846124dd565b6001600160a01b0384163314610ba557600061225785336118a4565b9050600019811461227c576122778533610c2d848763ffffffff61195016565b61231f565b6001600160a01b038516600090815260096020908152604080832033845290915290205415806122d657506122af61217d565b6001600160a01b038616600090815260096020908152604080832033845290915290205410155b61231f576040805162461bcd60e51b8152602060048201526015602482015274195e1c1a5c9e481a5cc81a5b881d1a19481c185cdd605a1b604482015290519081900360640190fd5b50610ba5565b612337826001600160a01b0316611e46565b612388576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106123c65780518252601f1990920191602091820191016123a7565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612428576040519150601f19603f3d011682016040523d82523d6000602084013e61242d565b606091505b509150915081612484576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b805115611893578080602001905160208110156124a057600080fd5b50516118935760405162461bcd60e51b815260040180806020018281038252602a8152602001806127f2602a913960400191505060405180910390fd5b6001600160a01b0383166125225760405162461bcd60e51b81526004018080602001828103825260258152602001806127a96025913960400191505060405180910390fd5b6001600160a01b0382166125675760405162461bcd60e51b81526004018080602001828103825260238152602001806126606023913960400191505060405180910390fd5b6001600160a01b038316600090815260016020526040902054612590908263ffffffff61195016565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546125c5908263ffffffff611de516565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60328061262e8339019056fe60806040526040516032380380603283398181016040526020811015602357600080fd5b50516001600160a01b038116fffe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373a934977eb9828ba1f50591af02c98441645b4f0e916e0fecb4cc8e9c633dade2796f752063616e2774207472616e7366657220746f20446973747269627574696f6e20636f6e7472616374796f752063616e2774207472616e7366657220746f2062726964676520636f6e74726163744f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726f6e546f6b656e5472616e7366657228616464726573732c75696e743235362c62797465732963616e277420616464206f6e65206d6f7265206272696467652064756520746f2061206c696d697445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564796f752063616e2774207472616e7366657220746f2041647669736f727352657761726420636f6e7472616374796f752063616e2774207472616e7366657220746f20507269766174654f66666572696e6720636f6e7472616374a265627a7a723058200ad8413827775c27ddf491b436341ef313c21b1aad827a04e4e91991f6ee4cd764736f6c634300050a0032454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e74726163742900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000009a3c886ef554cfd07b2065d69b4b52a3d2379a4a000000000000000000000000eb92ecc81b112d614404dcdec73ad5b87b9286450000000000000000000000007471215451f6b300e4b771d4cb5b9797e69d17ab00000000000000000000000000000000000000000000000000000000000000105354414b45207465737420746f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000653544b5453540000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102325760003560e01c8063726600ce11610130578063a457c2d7116100b8578063dd62ed3e1161007c578063dd62ed3e1461075f578063f2d5d56b1461078d578063f2fde38b146107b9578063fbb2a53f146107df578063ff9e884d146107e757610232565b8063a457c2d71461069d578063a9059cbb146106c9578063b753a98c146106f5578063bb35783b14610721578063c794c7691461075757610232565b80638f32d59b116100ff5780638f32d59b146105b55780638fcbaf0c146105bd57806395d89b41146106175780639712fdf81461061f5780639da38e2f1461064557610232565b8063726600ce146105595780637a13685a1461057f5780637ecebe00146105875780638da5cb5b146105ad57610232565b806337fb7e21116101be57806354fd4d501161018257806354fd4d50146104ed57806369ffa08a146104f55780636e15d21b1461052357806370a082311461052b578063715018a61461055157610232565b806337fb7e21146103c657806339509351146103ea5780634000aea01461041657806340c10f191461049b5780634bcb88bc146104c757610232565b8063238a3fe111610205578063238a3fe11461033657806323b872dd1461036257806330adf81f14610398578063313ce567146103a05780633644e515146103be57610232565b806304df017d1461023757806306fdde031461025f578063095ea7b3146102dc57806318160ddd1461031c575b600080fd5b61025d6004803603602081101561024d57600080fd5b50356001600160a01b0316610815565b005b610267610a56565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102a1578181015183820152602001610289565b50505050905090810190601f1680156102ce5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610308600480360360408110156102f257600080fd5b506001600160a01b038135169060200135610aec565b604080519115158252519081900360200190f35b610324610b02565b60408051918252519081900360200190f35b6103086004803603604081101561034c57600080fd5b506001600160a01b038135169060200135610b08565b6103086004803603606081101561037857600080fd5b506001600160a01b03813581169160208101359091169060400135610b8d565b610324610baf565b6103a8610bd3565b6040805160ff9092168252519081900360200190f35b610324610bdc565b6103ce610be2565b604080516001600160a01b039092168252519081900360200190f35b6103086004803603604081101561040057600080fd5b506001600160a01b038135169060200135610bf1565b6103086004803603606081101561042c57600080fd5b6001600160a01b038235169160208101359181019060608101604082013564010000000081111561045c57600080fd5b82018360208201111561046e57600080fd5b8035906020019184600183028401116401000000008311171561049057600080fd5b509092509050610c32565b610308600480360360408110156104b157600080fd5b506001600160a01b038135169060200135610dd2565b6103ce600480360360208110156104dd57600080fd5b50356001600160a01b0316610e80565b610267610e9b565b61025d6004803603604081101561050b57600080fd5b506001600160a01b0381358116916020013516610eb8565b6103ce611083565b6103246004803603602081101561054157600080fd5b50356001600160a01b0316611092565b61025d6110ad565b6103086004803603602081101561056f57600080fd5b50356001600160a01b0316611133565b6103ce61116d565b6103246004803603602081101561059d57600080fd5b50356001600160a01b031661117c565b6103ce61118e565b61030861119d565b61025d60048036036101008110156105d457600080fd5b506001600160a01b038135811691602081013590911690604081013590606081013590608081013515159060ff60a0820135169060c08101359060e001356111ae565b610267611446565b61025d6004803603602081101561063557600080fd5b50356001600160a01b03166114a7565b61064d6116e6565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610689578181015183820152602001610671565b505050509050019250505060405180910390f35b610308600480360360408110156106b357600080fd5b506001600160a01b03813516906020013561182a565b610308600480360360408110156106df57600080fd5b506001600160a01b038135169060200135611866565b61025d6004803603604081101561070b57600080fd5b506001600160a01b03813516906020013561187d565b61025d6004803603606081101561073757600080fd5b506001600160a01b03813581169160208101359091169060400135611888565b6103ce611899565b6103246004803603604081101561077557600080fd5b506001600160a01b03813581169160200135166118a4565b61025d600480360360408110156107a357600080fd5b506001600160a01b0381351690602001356118cf565b61025d600480360360208110156107cf57600080fd5b50356001600160a01b03166118da565b61032461192d565b610324600480360360408110156107fd57600080fd5b506001600160a01b0381358116916020013516611933565b61081d61119d565b61085c576040805162461bcd60e51b8152602060048201819052602482015260008051602061273b833981519152604482015290519081900360640190fd5b61086581611133565b6108ad576040805162461bcd60e51b8152602060048201526014602482015273189c9a5919d9481a5cdb89dd08195e1a5cdd195960621b604482015290519081900360640190fd5b6001600160a01b038082166000908152600d6020526040812054908290526000805160206126cb833981519152549082169190811680610929576040805162461bcd60e51b81526020600482015260126024820152711e995c9bc81859191c995cdcc8199bdd5b9960721b604482015290519081900360640190fd5b836001600160a01b0316816001600160a01b0316146109c8576001600160a01b038082166000908152600d602052604090205491925090811690811480159061097a57506001600160a01b03811615155b6109c3576040805162461bcd60e51b81526020600482015260156024820152741a5b9d985b1a59081859191c995cdcc8199bdd5b99605a1b604482015290519081900360640190fd5b610929565b6001600160a01b038083166000908152600d602052604080822080548488166001600160a01b0319918216179091559287168252902080549091169055600e54610a1990600163ffffffff61195016565b600e556040516001600160a01b038516907f5d9d5034656cb3ebfb0655057cd7f9b4077a9b42ff42ce223cbac5bc586d212690600090a250505050565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ae25780601f10610ab757610100808354040283529160200191610ae2565b820191906000526020600020905b815481529060010190602001808311610ac557829003601f168201915b5050505050905090565b6000610af93384846119ad565b50600192915050565b60035490565b600a546000906001600160a01b0316331480610b2e5750600b546001600160a01b031633145b80610b435750600c546001600160a01b031633145b610b83576040805162461bcd60e51b815260206004820152600c60248201526b3bb937b7339039b2b73232b960a11b604482015290519081900360640190fd5b610af98383611a99565b6000610b9a848484611bd9565b610ba5848484611c2c565b5060019392505050565b7fea2aa0a1be11a07ed86d755c93467f4f82362b452371d1ba94d1715123511acb81565b60065460ff1690565b60075481565b600a546001600160a01b031681565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610af9918590610c2d908663ffffffff611de516565b6119ad565b6000846001600160a01b03811615801590610c5657506001600160a01b0381163014155b610c9f576040805162461bcd60e51b81526020600482015260156024820152741b9bdd0818481d985b1a59081c9958da5c1a595b9d605a1b604482015290519081900360640190fd5b610ca98686611a99565b856001600160a01b0316336001600160a01b03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1687878760405180848152602001806020018281038252848482818152602001925080828437600083820152604051601f909101601f1916909201829003965090945050505050a3610d37866001600160a01b0316611e46565b15610dc657610d7e33878787878080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611e4c92505050565b610dc6576040805162461bcd60e51b815260206004820152601460248201527318dbdb9d1c9858dd0818d85b1b0819985a5b195960621b604482015290519081900360640190fd5b50600195945050505050565b6000610ddd33611133565b610e2e576040805162461bcd60e51b815260206004820152601860248201527f63616c6c6572206973206e6f7420746865206272696467650000000000000000604482015290519081900360640190fd5b610e388383612039565b6040805183815290516001600160a01b038516917f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885919081900360200190a250600192915050565b600d602052600090815260409020546001600160a01b031681565b604051806040016040528060018152602001603160f81b81525081565b610ec061119d565b610eff576040805162461bcd60e51b8152602060048201819052602482015260008051602061273b833981519152604482015290519081900360640190fd5b806001600160a01b03811615801590610f2157506001600160a01b0381163014155b610f6a576040805162461bcd60e51b81526020600482015260156024820152741b9bdd0818481d985b1a59081c9958da5c1a595b9d605a1b604482015290519081900360640190fd5b6001600160a01b038316610fe8576040513031906001600160a01b0384169082156108fc029083906000818181858888f19350505050610fe2578083604051610fb290612621565b6001600160a01b039091168152604051908190036020019082f080158015610fde573d6000803e3d6000fd5b5050505b5061107e565b604080516370a0823160e01b8152306004820152905184916000916001600160a01b038416916370a08231916024808301926020929190829003018186803b15801561103357600080fd5b505afa158015611047573d6000803e3d6000fd5b505050506040513d602081101561105d57600080fd5b5051905061107b6001600160a01b038316858363ffffffff61212b16565b50505b505050565b600c546001600160a01b031681565b6001600160a01b031660009081526001602052604090205490565b6110b561119d565b6110f4576040805162461bcd60e51b8152602060048201819052602482015260008051602061273b833981519152604482015290519081900360640190fd5b6040805162461bcd60e51b815260206004820152600f60248201526e1b9bdd081a5b5c1b195b595b9d1959608a1b604482015290519081900360640190fd5b60006001600160a01b038281161480159061116757506001600160a01b038281166000908152600d60205260409020541615155b92915050565b600b546001600160a01b031681565b60086020526000908152604090205481565b6000546001600160a01b031690565b6000546001600160a01b0316331490565b8415806111c25750846111bf61217d565b11155b611204576040805162461bcd60e51b815260206004820152600e60248201526d696e76616c69642065787069727960901b604482015290519081900360640190fd5b600754604080517fea2aa0a1be11a07ed86d755c93467f4f82362b452371d1ba94d1715123511acb6020808301919091526001600160a01b03808d16838501528b166060830152608082018a905260a0820189905287151560c0808401919091528351808403909101815260e08301845280519082012061190160f01b610100840152610102830194909452610122808301949094528251808303909401845261014282018084528451948201949094206000909452610162820180845284905260ff87166101828301526101a282018690526101c2820185905291516001926101e2808401939192601f1981019281900390910190855afa15801561130e573d6000803e3d6000fd5b505050602060405103516001600160a01b0316896001600160a01b03161461137d576040805162461bcd60e51b815260206004820152601f60248201527f696e76616c6964207369676e6174757265206f7220706172616d657465727300604482015290519081900360640190fd5b6001600160a01b038916600090815260086020526040902080546001810190915587146113e1576040805162461bcd60e51b815260206004820152600d60248201526c696e76616c6964206e6f6e636560981b604482015290519081900360640190fd5b6000856113ef5760006113f3565b6000195b90506114008a8a836119ad565b8561140c57600061140e565b865b6001600160a01b039a8b1660009081526009602090815260408083209c909d1682529a909a5299909820989098555050505050505050565b60058054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ae25780601f10610ab757610100808354040283529160200191610ae2565b6114af61119d565b6114ee576040805162461bcd60e51b8152602060048201819052602482015260008051602061273b833981519152604482015290519081900360640190fd5b6032600e541061152f5760405162461bcd60e51b81526004018080602001828103825260288152602001806127816028913960400191505060405180910390fd5b611541816001600160a01b0316611e46565b61158b576040805162461bcd60e51b81526020600482015260166024820152756e6f74206120636f6e7472616374206164647265737360501b604482015290519081900360640190fd5b61159481611133565b156115de576040805162461bcd60e51b815260206004820152601560248201527462726964676520616c72656164792065786973747360581b604482015290519081900360640190fd5b6001600160a01b036000819052600d6020526000805160206126cb833981519152541680611653576040805162461bcd60e51b815260206004820152601c60248201527f666972737420627269646765206973207a65726f206164647265737300000000604482015290519081900360640190fd5b600d6020526000805160206126cb83398151915280546001600160a01b03199081166001600160a01b038581169182179093556000908152604090208054909116918316919091179055600e546116ab906001611de5565b600e556040516001600160a01b038316907f3cda433c5679ae4c6a5dea50840e222a42cba3695e4663de4366be899348422190600090a25050565b606080600e54604051908082528060200260200182016040528015611715578160200160208202803883390190505b506001600160a01b036000818152600d6020526000805160206126cb83398151915254929350911680611784576040805162461bcd60e51b81526020600482015260126024820152711e995c9bc81859191c995cdcc8199bdd5b9960721b604482015290519081900360640190fd5b6001600160a01b038181161461182257808383815181106117a157fe5b6001600160a01b039283166020918202929092018101919091529181166000908152600d90925260409091205460019290920191168061181d576040805162461bcd60e51b81526020600482015260126024820152711e995c9bc81859191c995cdcc8199bdd5b9960721b604482015290519081900360640190fd5b611784565b509091505090565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610af9918590610c2d908663ffffffff61195016565b60006118728383611a99565b610af9338484611c2c565b61107e338383610b8d565b611893838383610b8d565b50505050565b6001600160a01b0381565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61107e823383610b8d565b6118e261119d565b611921576040805162461bcd60e51b8152602060048201819052602482015260008051602061273b833981519152604482015290519081900360640190fd5b61192a81612181565b50565b600e5481565b600960209081526000928352604080842090915290825290205481565b6000828211156119a7576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6001600160a01b0383166119f25760405162461bcd60e51b81526004018080602001828103825260248152602001806127ce6024913960400191505060405180910390fd5b6001600160a01b038216611a375760405162461bcd60e51b81526004018080602001828103825260228152602001806126a96022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600a546000906001600160a01b0316331480611abf5750600b546001600160a01b031633145b80611ad45750600c546001600160a01b031633145b15611b885733600090815260016020526040902054611af9908363ffffffff61195016565b33600090815260016020526040808220929092556001600160a01b03851681522054611b2b908363ffffffff611de516565b6001600160a01b0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506001611b95565b611b928383612221565b90505b8061107e576040805162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b604482015290519081900360640190fd5b6000611be684848461222e565b905080611893576040805162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b604482015290519081900360640190fd5b611c3e826001600160a01b0316611e46565b8015611c655750604080516000815260208101909152611c6390849084908490611e4c565b155b1561107e57611c7382611133565b15611caf5760405162461bcd60e51b81526004018080602001828103825260258152602001806127166025913960400191505060405180910390fd5b600a546001600160a01b0383811691161415611cfc5760405162461bcd60e51b815260040180806020018281038252602b8152602001806126eb602b913960400191505060405180910390fd5b600b546001600160a01b0383811691161415611d495760405162461bcd60e51b815260040180806020018281038252602e815260200180612849602e913960400191505060405180910390fd5b600c546001600160a01b0383811691161415611d965760405162461bcd60e51b815260040180806020018281038252602d81526020018061281c602d913960400191505060405180910390fd5b604080516001600160a01b0380861682528416602082015280820183905290517f11249f0fc79fc134a15a10d1da8291b79515bf987e036ced05b9ec119614070b9181900360600190a1505050565b600082820183811015611e3f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3b151590565b6000606060405180606001604052806026815260200161275b6026913990506000856001600160a01b03168288878760405160240180846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611ed9578181015183820152602001611ec1565b50505050905090810190601f168015611f065780820380516001836020036101000a031916815260200191505b50945050505050604051602081830303815290604052906040518082805190602001908083835b60208310611f4c5780518252601f199092019160209182019101611f2d565b51815160001960209485036101000a01908116901991909116179052604080519490920184900390932092860180516001600160e01b03166001600160e01b031990941693909317835251855190945084935090508083835b60208310611fc45780518252601f199092019160209182019101611fa5565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612026576040519150601f19603f3d011682016040523d82523d6000602084013e61202b565b606091505b509098975050505050505050565b6001600160a01b038216612094576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6003546120a7908263ffffffff611de516565b6003556001600160a01b0382166000908152600160205260409020546120d3908263ffffffff611de516565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261107e908490612325565b4290565b6001600160a01b0381166121c65760405162461bcd60e51b81526004018080602001828103825260268152602001806126836026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000610af93384846124dd565b600061223b8484846124dd565b6001600160a01b0384163314610ba557600061225785336118a4565b9050600019811461227c576122778533610c2d848763ffffffff61195016565b61231f565b6001600160a01b038516600090815260096020908152604080832033845290915290205415806122d657506122af61217d565b6001600160a01b038616600090815260096020908152604080832033845290915290205410155b61231f576040805162461bcd60e51b8152602060048201526015602482015274195e1c1a5c9e481a5cc81a5b881d1a19481c185cdd605a1b604482015290519081900360640190fd5b50610ba5565b612337826001600160a01b0316611e46565b612388576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106123c65780518252601f1990920191602091820191016123a7565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612428576040519150601f19603f3d011682016040523d82523d6000602084013e61242d565b606091505b509150915081612484576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b805115611893578080602001905160208110156124a057600080fd5b50516118935760405162461bcd60e51b815260040180806020018281038252602a8152602001806127f2602a913960400191505060405180910390fd5b6001600160a01b0383166125225760405162461bcd60e51b81526004018080602001828103825260258152602001806127a96025913960400191505060405180910390fd5b6001600160a01b0382166125675760405162461bcd60e51b81526004018080602001828103825260238152602001806126606023913960400191505060405180910390fd5b6001600160a01b038316600090815260016020526040902054612590908263ffffffff61195016565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546125c5908263ffffffff611de516565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60328061262e8339019056fe60806040526040516032380380603283398181016040526020811015602357600080fd5b50516001600160a01b038116fffe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373a934977eb9828ba1f50591af02c98441645b4f0e916e0fecb4cc8e9c633dade2796f752063616e2774207472616e7366657220746f20446973747269627574696f6e20636f6e7472616374796f752063616e2774207472616e7366657220746f2062726964676520636f6e74726163744f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726f6e546f6b656e5472616e7366657228616464726573732c75696e743235362c62797465732963616e277420616464206f6e65206d6f7265206272696467652064756520746f2061206c696d697445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564796f752063616e2774207472616e7366657220746f2041647669736f727352657761726420636f6e7472616374796f752063616e2774207472616e7366657220746f20507269766174654f66666572696e6720636f6e7472616374a265627a7a723058200ad8413827775c27ddf491b436341ef313c21b1aad827a04e4e91991f6ee4cd764736f6c634300050a0032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000009a3c886ef554cfd07b2065d69b4b52a3d2379a4a000000000000000000000000eb92ecc81b112d614404dcdec73ad5b87b9286450000000000000000000000007471215451f6b300e4b771d4cb5b9797e69d17ab00000000000000000000000000000000000000000000000000000000000000105354414b45207465737420746f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000653544b5453540000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): STAKE test token
Arg [1] : _symbol (string): STKTST
Arg [2] : _distributionAddress (address): 0x9a3c886Ef554cFd07B2065d69b4B52A3d2379a4a
Arg [3] : _privateOfferingDistributionAddress (address): 0xEb92ecC81B112d614404dCdEc73Ad5b87B928645
Arg [4] : _advisorsRewardDistributionAddress (address): 0x7471215451f6b300e4b771D4cB5b9797e69d17ab
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000009a3c886ef554cfd07b2065d69b4b52a3d2379a4a
Arg [3] : 000000000000000000000000eb92ecc81b112d614404dcdec73ad5b87b928645
Arg [4] : 0000000000000000000000007471215451f6b300e4b771d4cb5b9797e69d17ab
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [6] : 5354414b45207465737420746f6b656e00000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [8] : 53544b5453540000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
40451:3464:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40451:3464:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42180:700;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42180:700:0;-1:-1:-1;;;;;42180:700:0;;:::i;:::-;;23306:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;23306:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17171:148;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;17171:148:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;16194:91;;;:::i;:::-;;;;;;;;;;;;;;;;34773:384;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;34773:384:0;;;;;;;;:::i;35422:216::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;35422:216:0;;;;;;;;;;;;;;;;;:::i;24687:108::-;;;:::i;24164:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24504:31;;;:::i;30234:34::-;;;:::i;:::-;;;;-1:-1:-1;;;;;30234:34:0;;;;;;;;;;;;;;18455:206;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18455:206:0;;;;;;;;:::i;33616:421::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;33616:421:0;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;33616:421:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;33616:421:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;33616:421:0;;-1:-1:-1;33616:421:0;-1:-1:-1;33616:421:0;:::i;37023:187::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;37023:187:0;;;;;;;;:::i;40667:49::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40667:49:0;-1:-1:-1;;;;;40667:49:0;;:::i;24435:36::-;;;:::i;35853:770::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;35853:770:0;;;;;;;;;;:::i;30436:48::-;;;:::i;16348:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16348:110:0;-1:-1:-1;;;;;16348:110:0;;:::i;37288:90::-;;;:::i;43763:149::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43763:149:0;-1:-1:-1;;;;;43763:149:0;;:::i;30328:49::-;;;:::i;24804:41::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24804:41:0;-1:-1:-1;;;;;24804:41:0;;:::i;2483:79::-;;;:::i;2849:92::-;;;:::i;28845:971::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;28845:971:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;23508:87::-;;;:::i;41470:587::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41470:587:0;-1:-1:-1;;;;;41470:587:0;;:::i;43004:550::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;43004:550:0;;;;;;;;;;;;;;;;;19164:216;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;19164:216:0;;;;;;;;:::i;34249:191::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;34249:191:0;;;;;;;;:::i;27199:108::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;27199:108:0;;;;;;;;:::i;27853:118::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;27853:118:0;;;;;;;;;;;;;;;;;:::i;40536:75::-;;;:::i;16890:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16890:134:0;;;;;;;;;;:::i;27535:112::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;27535:112:0;;;;;;;;:::i;3589:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3589:109:0;-1:-1:-1;;;;;3589:109:0;;:::i;40723:26::-;;;:::i;24852:66::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;24852:66:0;;;;;;;;;;:::i;42180:700::-;2695:9;:7;:9::i;:::-;2687:54;;;;;-1:-1:-1;;;2687:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2687:54:0;;;;;;;;;;;;;;;42257:17;42266:7;42257:8;:17::i;:::-;42249:50;;;;;-1:-1:-1;;;42249:50:0;;;;;;;;;;;;-1:-1:-1;;;42249:50:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;42333:23:0;;;42312:18;42333:23;;;:14;:23;;;;;;42415:21;;;;-1:-1:-1;;;;;;;;;;;42415:21:0;42333:23;;;;;42415:21;;42455:18;42447:49;;;;;-1:-1:-1;;;42447:49:0;;;;;;;;;;;;-1:-1:-1;;;42447:49:0;;;;;;;;;;;;;;;42524:7;-1:-1:-1;;;;;42516:15:0;:4;-1:-1:-1;;;;;42516:15:0;;42509:193;;-1:-1:-1;;;;;42582:21:0;;;;;;;:14;:21;;;;;;42556:4;;-1:-1:-1;42582:21:0;;;;42628:14;;;;;:36;;-1:-1:-1;;;;;;42646:18:0;;;;42628:36;42620:70;;;;;-1:-1:-1;;;42620:70:0;;;;;;;;;;;;-1:-1:-1;;;42620:70:0;;;;;;;;;;;;;;;42509:193;;;-1:-1:-1;;;;;42714:21:0;;;;;;;:14;:21;;;;;;:34;;;;;-1:-1:-1;;;;;;42714:34:0;;;;;;;42766:23;;;;;;;42759:30;;;;;;;42814:11;;:18;;42714:34;42814:18;:15;:18;:::i;:::-;42800:11;:32;42850:22;;-1:-1:-1;;;;;42850:22:0;;;;;;;;2752:1;;;42180:700;:::o;23306:83::-;23376:5;23369:12;;;;;;;;-1:-1:-1;;23369:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23343:13;;23369:12;;23376:5;;23369:12;;23376:5;23369:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23306:83;:::o;17171:148::-;17236:4;17253:36;17262:10;17274:7;17283:5;17253:8;:36::i;:::-;-1:-1:-1;17307:4:0;17171:148;;;;:::o;16194:91::-;16265:12;;16194:91;:::o;34773:384::-;34901:19;;34848:4;;-1:-1:-1;;;;;34901:19:0;34887:10;:33;;:98;;-1:-1:-1;34951:34:0;;-1:-1:-1;;;;;34951:34:0;34937:10;:48;34887:98;:162;;;-1:-1:-1;35016:33:0;;-1:-1:-1;;;;;35016:33:0;35002:10;:47;34887:162;34865:224;;;;;-1:-1:-1;;;34865:224:0;;;;;;;;;;;;-1:-1:-1;;;34865:224:0;;;;;;;;;;;;;;;35100:27;35115:3;35120:6;35100:14;:27::i;35422:216::-;35504:4;35521:38;35540:5;35547:3;35552:6;35521:18;:38::i;:::-;35570;35589:5;35596:3;35601:6;35570:18;:38::i;:::-;-1:-1:-1;35626:4:0;35422:216;;;;;:::o;24687:108::-;24729:66;24687:108;:::o;24164:83::-;24230:9;;;;24164:83;:::o;24504:31::-;;;;:::o;30234:34::-;;;-1:-1:-1;;;;;30234:34:0;;:::o;18455:206::-;18561:10;18535:4;18582:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;18582:32:0;;;;;;;;;;18535:4;;18552:79;;18573:7;;18582:48;;18619:10;18582:48;:36;:48;:::i;:::-;18552:8;:79::i;33616:421::-;33764:4;33750:3;-1:-1:-1;;;;;31367:24:0;;;;;;:55;;-1:-1:-1;;;;;;31395:27:0;;31417:4;31395:27;;31367:55;31359:89;;;;;-1:-1:-1;;;31359:89:0;;;;;;;;;;;;-1:-1:-1;;;31359:89:0;;;;;;;;;;;;;;;33781:27;33796:3;33801:6;33781:14;:27::i;:::-;33845:3;-1:-1:-1;;;;;33824:40:0;33833:10;-1:-1:-1;;;;;33824:40:0;;33850:6;33858:5;;33824:40;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;33824:40:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;33824:40:0;;;;-1:-1:-1;33824:40:0;;-1:-1:-1;;;;;33824:40:0;33881:16;:3;-1:-1:-1;;;;;33881:14:0;;:16::i;:::-;33877:131;;;33922:49;33940:10;33952:3;33957:6;33965:5;;33922:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;33922:17:0;;-1:-1:-1;;;33922:49:0:i;:::-;33914:82;;;;;-1:-1:-1;;;33914:82:0;;;;;;;;;;;;-1:-1:-1;;;33914:82:0;;;;;;;;;;;;;;;-1:-1:-1;34025:4:0;;33616:421;-1:-1:-1;;;;;33616:421:0:o;37023:187::-;37100:4;31587:20;31596:10;31587:8;:20::i;:::-;31579:57;;;;;-1:-1:-1;;;31579:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;37117:24;37123:8;37133:7;37117:5;:24::i;:::-;37157:23;;;;;;;;-1:-1:-1;;;;;37157:23:0;;;;;;;;;;;;;-1:-1:-1;37198:4:0;37023:187;;;;:::o;40667:49::-;;;;;;;;;;;;-1:-1:-1;;;;;40667:49:0;;:::o;24435:36::-;;;;;;;;;;;;;;-1:-1:-1;;;24435:36:0;;;;:::o;35853:770::-;2695:9;:7;:9::i;:::-;2687:54;;;;;-1:-1:-1;;;2687:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2687:54:0;;;;;;;;;;;;;;;35943:3;-1:-1:-1;;;;;31367:24:0;;;;;;:55;;-1:-1:-1;;;;;;31395:27:0;;31417:4;31395:27;;31367:55;31359:89;;;;;-1:-1:-1;;;31359:89:0;;;;;;;;;;;;-1:-1:-1;;;31359:89:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35963:20:0;;35959:657;;36057:15;;36024:4;36016:21;;-1:-1:-1;;;;;36057:8:0;;;:15;;;;;36016:21;;36000:13;36057:15;36000:13;36057:15;36016:21;36057:8;:15;;;;;;;36052:383;;36408:5;36415:3;36386:33;;;;;:::i;:::-;-1:-1:-1;;;;;36386:33:0;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;;36052:383:0;35959:657;;;;36527:30;;;-1:-1:-1;;;36527:30:0;;36551:4;36527:30;;;;;;36487:6;;36467:11;;-1:-1:-1;;;;;36527:15:0;;;;;:30;;;;;;;;;;;;;;:15;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;36527:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36527:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36527:30:0;;-1:-1:-1;36572:32:0;-1:-1:-1;;;;;36572:18:0;;36591:3;36527:30;36572:32;:18;:32;:::i;:::-;35959:657;;;2752:1;35853:770;;:::o;30436:48::-;;;-1:-1:-1;;;;;30436:48:0;;:::o;16348:110::-;-1:-1:-1;;;;;16432:18:0;16405:7;16432:18;;;:9;:18;;;;;;;16348:110::o;37288:90::-;2695:9;:7;:9::i;:::-;2687:54;;;;;-1:-1:-1;;;2687:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2687:54:0;;;;;;;;;;;;;;;37345:25;;;-1:-1:-1;;;37345:25:0;;;;;;;;;;;;-1:-1:-1;;;37345:25:0;;;;;;;;;;;;;;43763:149;43820:4;-1:-1:-1;;;;;43844:18:0;;;;;;;:60;;-1:-1:-1;;;;;;43866:24:0;;;43902:1;43866:24;;;:14;:24;;;;;;;:38;;43844:60;43837:67;43763:149;-1:-1:-1;;43763:149:0:o;30328:49::-;;;-1:-1:-1;;;;;30328:49:0;;:::o;24804:41::-;;;;;;;;;;;;;:::o;2483:79::-;2521:7;2548:6;-1:-1:-1;;;;;2548:6:0;2483:79;:::o;2849:92::-;2889:4;2927:6;-1:-1:-1;;;;;2927:6:0;2913:10;:20;;2849:92::o;28845:971::-;29085:12;;;:33;;;29111:7;29101:6;:4;:6::i;:::-;:17;;29085:33;29077:60;;;;;-1:-1:-1;;;29077:60:0;;;;;;;;;;;;-1:-1:-1;;;29077:60:0;;;;;;;;;;;;;;;29233:16;;29274:190;;;24729:66;29274:190;;;;;;;;-1:-1:-1;;;;;29274:190:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;29274:190:0;;;;;29264:201;;;;;;-1:-1:-1;;;29177:299:0;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;29177:299:0;;;;;;29167:310;;;;;;;;;29150:14;29509:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29274:190;;-1:-1:-1;;29509:29:0;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;29509:29:0;;;;;;;;-1:-1:-1;;;;;29498:40:0;:7;-1:-1:-1;;;;;29498:40:0;;29490:84;;;;;-1:-1:-1;;;29490:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29603:15:0;;;;;;:6;:15;;;;;:17;;;;;;;;29593:27;;29585:53;;;;;-1:-1:-1;;;29585:53:0;;;;;;;;;;;;-1:-1:-1;;;29585:53:0;;;;;;;;;;;;;;;29651:14;29668:8;:26;;29693:1;29668:26;;;-1:-1:-1;;29668:26:0;29651:43;;29705:35;29714:7;29723:8;29733:6;29705:8;:35::i;:::-;29786:8;:22;;29807:1;29786:22;;;29797:7;29786:22;-1:-1:-1;;;;;29753:20:0;;;;;;;:11;:20;;;;;;;;:30;;;;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;;;;28845:971:0:o;23508:87::-;23580:7;23573:14;;;;;;;;-1:-1:-1;;23573:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23547:13;;23573:14;;23580:7;;23573:14;;23580:7;23573:14;;;;;;;;;;;;;;;;;;;;;;;;41470:587;2695:9;:7;:9::i;:::-;2687:54;;;;;-1:-1:-1;;;2687:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2687:54:0;;;;;;;;;;;;;;;40658:2;41544:11;;:25;41536:78;;;;-1:-1:-1;;;41536:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41633:20;:7;-1:-1:-1;;;;;41633:18:0;;:20::i;:::-;41625:55;;;;;-1:-1:-1;;;41625:55:0;;;;;;;;;;;;-1:-1:-1;;;41625:55:0;;;;;;;;;;;;;;;41700:17;41709:7;41700:8;:17::i;:::-;41699:18;41691:52;;;;;-1:-1:-1;;;41691:52:0;;;;;;;;;;;;-1:-1:-1;;;41691:52:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;41756:19:0;41778:22;;;:14;:22;;-1:-1:-1;;;;;;;;;;;41778:22:0;;41819:25;41811:66;;;;;-1:-1:-1;;;41811:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;41888:14;:22;;-1:-1:-1;;;;;;;;;;;41888:32:0;;-1:-1:-1;;;;;;41888:32:0;;;-1:-1:-1;;;;;41888:32:0;;;;;;;;;-1:-1:-1;41931:23:0;;;41888:22;41931:23;;:37;;;;;;;;;;;;;;41993:11;;:18;;-1:-1:-1;41993:15:0;:18::i;:::-;41979:11;:32;42029:20;;-1:-1:-1;;;;;42029:20:0;;;;;;;;2752:1;41470:587;:::o;43004:550::-;43049:16;43078:21;43116:11;;43102:26;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;136:17;;-1:-1;43102:26:0;-1:-1:-1;;;;;;43139:15:0;43190:22;;;:14;:22;;-1:-1:-1;;;;;;;;;;;43190:22:0;43078:50;;-1:-1:-1;43139:15:0;43190:22;43231:24;43223:55;;;;;-1:-1:-1;;;43223:55:0;;;;;;;;;;;;-1:-1:-1;;;43223:55:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;43298:20:0;;;;43291:232;;43351:10;43335:4;43340:7;43335:13;;;;;;;;-1:-1:-1;;;;;43335:26:0;;;:13;;;;;;;;;;:26;;;;43389;;;;;;;:14;:26;;;;;;;;;43430:9;;;;;43389:26;43464:24;43456:55;;;;;-1:-1:-1;;;43456:55:0;;;;;;;;;;;;-1:-1:-1;;;43456:55:0;;;;;;;;;;;;;;;43291:232;;;-1:-1:-1;43542:4:0;;-1:-1:-1;;43004:550:0;:::o;19164:216::-;19275:10;19249:4;19296:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;19296:32:0;;;;;;;;;;19249:4;;19266:84;;19287:7;;19296:53;;19333:15;19296:53;:36;:53;:::i;34249:191::-;34312:4;34329:27;34344:3;34349:6;34329:14;:27::i;:::-;34367:43;34386:10;34398:3;34403:6;34367:18;:43::i;27199:108::-;27261:38;27274:10;27286:3;27291:7;27261:12;:38::i;27853:118::-;27930:33;27943:5;27950:3;27955:7;27930:12;:33::i;:::-;;27853:118;;;:::o;40536:75::-;-1:-1:-1;;;;;40536:75:0;:::o;16890:134::-;-1:-1:-1;;;;;16989:18:0;;;16962:7;16989:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;16890:134::o;27535:112::-;27599:40;27612:5;27619:10;27631:7;27599:12;:40::i;3589:109::-;2695:9;:7;:9::i;:::-;2687:54;;;;;-1:-1:-1;;;2687:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2687:54:0;;;;;;;;;;;;;;;3662:28;3681:8;3662:18;:28::i;:::-;3589:109;:::o;40723:26::-;;;;:::o;24852:66::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;8125:184::-;8183:7;8216:1;8211;:6;;8203:49;;;;;-1:-1:-1;;;8203:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8275:5:0;;;8125:184::o;21966:335::-;-1:-1:-1;;;;;22059:19:0;;22051:68;;;;-1:-1:-1;;;22051:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22138:21:0;;22130:68;;;;-1:-1:-1;;;22130:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22211:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;22262:31;;;;;;;;;;;;;;;;;21966:335;;;:::o;37543:765::-;37671:19;;37616:12;;-1:-1:-1;;;;;37671:19:0;37657:10;:33;;:98;;-1:-1:-1;37721:34:0;;-1:-1:-1;;;;;37721:34:0;37707:10;:48;37657:98;:162;;;-1:-1:-1;37786:33:0;;-1:-1:-1;;;;;37786:33:0;37772:10;:47;37657:162;37639:616;;;38010:10;38000:21;;;;:9;:21;;;;;;:33;;38026:6;38000:33;:25;:33;:::i;:::-;37986:10;37976:21;;;;:9;:21;;;;;;:57;;;;-1:-1:-1;;;;;38065:14:0;;;;;;:26;;38084:6;38065:26;:18;:26;:::i;:::-;-1:-1:-1;;;;;38048:14:0;;;;;;:9;:14;;;;;;;;;:43;;;;38111:33;;;;;;;38048:14;;38120:10;;38111:33;;;;;;;;;;-1:-1:-1;38169:4:0;37639:616;;;38216:27;38231:3;38236:6;38216:14;:27::i;:::-;38206:37;;37639:616;38273:7;38265:35;;;;;-1:-1:-1;;;38265:35:0;;;;;;;;;;;;-1:-1:-1;;;38265:35:0;;;;;;;;;;;;;;38526:199;38618:12;38633:38;38652:5;38659:3;38664:6;38633:18;:38::i;:::-;38618:53;;38690:7;38682:35;;;;;-1:-1:-1;;;38682:35:0;;;;;;;;;;;;-1:-1:-1;;;38682:35:0;;;;;;;;;;;;;;38933:659;39029:16;:3;-1:-1:-1;;;;;39029:14:0;;:16::i;:::-;:72;;;;-1:-1:-1;39088:12:0;;;39098:1;39088:12;;;;;;;;39050:51;;39068:5;;39075:3;;39080:6;;39050:17;:51::i;:::-;39049:52;39029:72;39025:560;;;39127:13;39136:3;39127:8;:13::i;:::-;39126:14;39118:64;;;;-1:-1:-1;;;39118:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39212:19;;-1:-1:-1;;;;;39205:26:0;;;39212:19;;39205:26;;39197:82;;;;-1:-1:-1;;;39197:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39309:34;;-1:-1:-1;;;;;39302:41:0;;;39309:34;;39302:41;;39294:100;;;;-1:-1:-1;;;39294:100:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39424:33;;-1:-1:-1;;;;;39417:40:0;;;39424:33;;39417:40;;39409:98;;;;-1:-1:-1;;;39409:98:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39527:46;;;-1:-1:-1;;;;;39527:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;38933:659;;;:::o;7669:181::-;7727:7;7759:5;;;7783:6;;;;7775:46;;;;;-1:-1:-1;;;7775:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;7841:1;7669:181;-1:-1:-1;;;7669:181:0:o;558:422::-;925:20;964:8;;;558:422::o;39874:428::-;40025:4;40042:23;:66;;;;;;;;;;;;;;;;;;;40185:12;40203:3;-1:-1:-1;;;;;40203:8:0;40236:9;40247:5;40254:6;40262:5;40212:56;;;;;;-1:-1:-1;;;;;40212:56:0;-1:-1:-1;;;;;40212:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;40212:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;40212:56:0;;;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;-1:-1;;263:2;259:12;;;254:3;250:22;246:30;340:21;;;311:9;;295:26;;;;377:20;365:33;;40212:56:0;;;;;;;;;;;;;25:18:-1;;;61:17;;-1:-1;;;;;182:15;-1:-1;;;;;;40212:56:0;;;179:29:-1;;;;160:49;;40203:66:0;;;;;-1:-1:-1;40203:66:0;;-1:-1:-1;40203:66:0;-1:-1:-1;40203:66:0;;25:18:-1;36:153;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;40203:66:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;-1:-1;40184:85:0;;39874:428;-1:-1:-1;;;;;;;;39874:428:0:o;20580:308::-;-1:-1:-1;;;;;20656:21:0;;20648:65;;;;;-1:-1:-1;;;20648:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20741:12;;:24;;20758:6;20741:24;:16;:24;:::i;:::-;20726:12;:39;-1:-1:-1;;;;;20797:18:0;;;;;;:9;:18;;;;;;:30;;20820:6;20797:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;20776:18:0;;;;;;:9;:18;;;;;;;;:51;;;;20843:37;;;;;;;20776:18;;;;20843:37;;;;;;;;;;20580:308;;:::o;11009:176::-;11118:58;;;-1:-1:-1;;;;;11118:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;11118:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;11092:85:0;;11111:5;;11092:18;:85::i;29824:76::-;29889:3;29824:76;:::o;3804:229::-;-1:-1:-1;;;;;3878:22:0;;3870:73;;;;-1:-1:-1;;;3870:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3980:6;;;3959:38;;-1:-1:-1;;;;;3959:38:0;;;;3980:6;;;3959:38;;;4008:6;:17;;-1:-1:-1;;;;;;4008:17:0;-1:-1:-1;;;;;4008:17:0;;;;;;;;;;3804:229::o;16671:156::-;16740:4;16757:40;16767:10;16779:9;16790:6;16757:9;:40::i;25941:1105::-;26033:4;26050:39;26060:7;26069:10;26081:7;26050:9;:39::i;:::-;-1:-1:-1;;;;;26106:21:0;;26117:10;26106:21;26102:913;;26144:21;26168:30;26178:7;26187:10;26168:9;:30::i;:::-;26144:54;;-1:-1:-1;;26219:13:0;:28;26215:667;;26395:57;26404:7;26413:10;26425:26;:13;26443:7;26425:26;:17;:26;:::i;26395:57::-;26215:667;;;-1:-1:-1;;;;;26718:20:0;;;;;;:11;:20;;;;;;;;26739:10;26718:32;;;;;;;;:37;;:83;;;26795:6;:4;:6::i;:::-;-1:-1:-1;;;;;26759:20:0;;;;;;:11;:20;;;;;;;;26780:10;26759:32;;;;;;;;:42;;26718:83;26688:178;;;;;-1:-1:-1;;;26688:178:0;;;;;;;;;;;;-1:-1:-1;;;26688:178:0;;;;;;;;;;;;;;;26102:913;;;13003:1114;13607:27;13615:5;-1:-1:-1;;;;;13607:25:0;;:27::i;:::-;13599:71;;;;;-1:-1:-1;;;13599:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;13744:12;13758:23;13793:5;-1:-1:-1;;;;;13785:19:0;13805:4;13785:25;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;13785:25:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;13743:67:0;;;;13829:7;13821:52;;;;;-1:-1:-1;;;13821:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13890:17;;:21;13886:224;;14032:10;14021:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14021:30:0;14013:85;;;;-1:-1:-1;;;14013:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19870:429;-1:-1:-1;;;;;19968:20:0;;19960:70;;;;-1:-1:-1;;;19960:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20049:23:0;;20041:71;;;;-1:-1:-1;;;20041:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20145:17:0;;;;;;:9;:17;;;;;;:29;;20167:6;20145:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;20125:17:0;;;;;;;:9;:17;;;;;;:49;;;;20208:20;;;;;;;:32;;20233:6;20208:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;20185:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;20256:35;;;;;;;20185:20;;20256:35;;;;;;;;;;;;;19870:429;;;:::o;40451:3464::-;;;;;;;;:::o
Swarm Source
bzzr://0ad8413827775c27ddf491b436341ef313c21b1aad827a04e4e91991f6ee4cd7
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.