ETH Price: $2,037.46 (+3.89%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Enter103610942020-06-29 13:46:102072 days ago1593438370IN
0x039aA54f...0a82F8571
0 ETH0.0091782139.6
Execute Proposal103598452020-06-29 9:03:442072 days ago1593421424IN
0x039aA54f...0a82F8571
0 ETH0.0092644247.85
Execute Proposal103598182020-06-29 8:57:032072 days ago1593421023IN
0x039aA54f...0a82F8571
0 ETH0.0092644247.85
Enter103598172020-06-29 8:56:112072 days ago1593420971IN
0x039aA54f...0a82F8571
0 ETH0.0110878447.85
Enter103598162020-06-29 8:55:352072 days ago1593420935IN
0x039aA54f...0a82F8571
0 ETH0.0088980947.85
Execute Proposal103598062020-06-29 8:52:512072 days ago1593420771IN
0x039aA54f...0a82F8571
0 ETH0.0092644247.85
Enter103597952020-06-29 8:50:072072 days ago1593420607IN
0x039aA54f...0a82F8571
0 ETH0.0088984747.85
Enter103597942020-06-29 8:49:392072 days ago1593420579IN
0x039aA54f...0a82F8571
0 ETH0.0110893847.85
Enter103597942020-06-29 8:49:392072 days ago1593420579IN
0x039aA54f...0a82F8571
0 ETH0.0110893847.85
Enter103597802020-06-29 8:45:232072 days ago1593420323IN
0x039aA54f...0a82F8571
0 ETH0.0054541931.9
Enter103597782020-06-29 8:44:472072 days ago1593420287IN
0x039aA54f...0a82F8571
0 ETH0.0073935531.9
Enter103597782020-06-29 8:44:472072 days ago1593420287IN
0x039aA54f...0a82F8571
0 ETH0.0073935531.9
Enter103597732020-06-29 8:43:522072 days ago1593420232IN
0x039aA54f...0a82F8571
0 ETH0.0073922831.9
Enter103597692020-06-29 8:43:072072 days ago1593420187IN
0x039aA54f...0a82F8571
0 ETH0.007648533
Enter103597662020-06-29 8:42:402072 days ago1593420160IN
0x039aA54f...0a82F8571
0 ETH0.0073922831.9
Enter103597622020-06-29 8:41:512072 days ago1593420111IN
0x039aA54f...0a82F8571
0 ETH0.0073922831.9
Enter103597592020-06-29 8:41:352072 days ago1593420095IN
0x039aA54f...0a82F8571
0 ETH0.0073935531.9
Enter103597592020-06-29 8:41:352072 days ago1593420095IN
0x039aA54f...0a82F8571
0 ETH0.0073929231.9
Enter103597592020-06-29 8:41:352072 days ago1593420095IN
0x039aA54f...0a82F8571
0 ETH0.0073922831.9
Enter103597552020-06-29 8:40:352072 days ago1593420035IN
0x039aA54f...0a82F8571
0 ETH0.0073925331.9
Enter103597502020-06-29 8:39:032072 days ago1593419943IN
0x039aA54f...0a82F8571
0 ETH0.0076478433
Execute Proposal103401332020-06-26 7:42:252075 days ago1593157345IN
0x039aA54f...0a82F8571
0 ETH0.0124046536.3
Execute Proposal103401202020-06-26 7:39:582075 days ago1593157198IN
0x039aA54f...0a82F8571
0 ETH0.0082038736.3
Enter103401202020-06-26 7:39:582075 days ago1593157198IN
0x039aA54f...0a82F8571
0 ETH0.0084121936.3
Enter103401202020-06-26 7:39:582075 days ago1593157198IN
0x039aA54f...0a82F8571
0 ETH0.0081575635.2
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

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

Contract Source Code Verified (Exact Match)

Contract Name:
DualsigsLogic

Compiler Version
v0.5.4+commit.9549d8ff

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license
/**
 *Submitted for verification at Etherscan.io on 2020-01-14
*/

pragma solidity ^0.5.4;


contract Account {

    // The implementation of the proxy
    address public implementation;

    // Logic manager
    address public manager;
    
    // The enabled static calls
    mapping (bytes4 => address) public enabled;

    event EnabledStaticCall(address indexed module, bytes4 indexed method);
    event Invoked(address indexed module, address indexed target, uint indexed value, bytes data);
    event Received(uint indexed value, address indexed sender, bytes data);

    event AccountInit(address indexed account);
    event ManagerChanged(address indexed mgr);

    modifier allowAuthorizedLogicContractsCallsOnly {
        require(LogicManager(manager).isAuthorized(msg.sender), "not an authorized logic");
        _;
    }

    function init(address _manager, address _accountStorage, address[] calldata _logics, address[] calldata _keys, address[] calldata _backups)
        external
    {
        require(manager == address(0), "Account: account already initialized");
        require(_manager != address(0) && _accountStorage != address(0), "Account: address is null");
        manager = _manager;

        for (uint i = 0; i < _logics.length; i++) {
            address logic = _logics[i];
            require(LogicManager(manager).isAuthorized(logic), "must be authorized logic");

            BaseLogic(logic).initAccount(this);
        }

        AccountStorage(_accountStorage).initAccount(this, _keys, _backups);

        emit AccountInit(address(this));
    }

    function invoke(address _target, uint _value, bytes calldata _data)
        external
        allowAuthorizedLogicContractsCallsOnly
        returns (bytes memory _res)
    {
        bool success;
        // solium-disable-next-line security/no-call-value
        (success, _res) = _target.call.value(_value)(_data);
        require(success, "call to target failed");
        emit Invoked(msg.sender, _target, _value, _data);
    }

    /**
    * @dev Enables a static method by specifying the target module to which the call must be delegated.
    * @param _module The target module.
    * @param _method The static method signature.
    */
    function enableStaticCall(address _module, bytes4 _method) external allowAuthorizedLogicContractsCallsOnly {
        enabled[_method] = _module;
        emit EnabledStaticCall(_module, _method);
    }

    function changeManager(address _newMgr) external allowAuthorizedLogicContractsCallsOnly {
        require(_newMgr != address(0), "address cannot be null");
        require(_newMgr != manager, "already changed");
        manager = _newMgr;
        emit ManagerChanged(_newMgr);
    }

     /**
     * @dev This method makes it possible for the wallet to comply to interfaces expecting the wallet to
     * implement specific static methods. It delegates the static call to a target contract if the data corresponds
     * to an enabled method, or logs the call otherwise.
     */
    function() external payable {
        if(msg.data.length > 0) {
            address logic = enabled[msg.sig];
            if(logic == address(0)) {
                emit Received(msg.value, msg.sender, msg.data);
            }
            else {
                require(LogicManager(manager).isAuthorized(logic), "must be an authorized logic for static call");
                // solium-disable-next-line security/no-inline-assembly
                assembly {
                    calldatacopy(0, 0, calldatasize())
                    let result := staticcall(gas, logic, 0, calldatasize(), 0, 0)
                    returndatacopy(0, 0, returndatasize())
                    switch result
                    case 0 {revert(0, returndatasize())}
                    default {return (0, returndatasize())}
                }
            }
        }
    }
}


contract Owned {

    // The owner
    address public owner;

    event OwnerChanged(address indexed _newOwner);

    /**
     * @dev Throws if the sender is not the owner.
     */
    modifier onlyOwner {
        require(msg.sender == owner, "Must be owner");
        _;
    }

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

    /**
     * @dev Lets the owner transfer ownership of the contract to a new owner.
     * @param _newOwner The new owner.
     */
    function changeOwner(address _newOwner) external onlyOwner {
        require(_newOwner != address(0), "Address must not be null");
        owner = _newOwner;
        emit OwnerChanged(_newOwner);
    }
}

contract LogicManager is Owned {

    event UpdateLogicSubmitted(address indexed logic, bool value);
    event UpdateLogicCancelled(address indexed logic);
    event UpdateLogicDone(address indexed logic, bool value);

    struct pending {
        bool value;
        uint dueTime;
    }

    // The authorized logic modules
    mapping (address => bool) public authorized;

    /*
    array
    index 0: AccountLogic address
          1: TransferLogic address
          2: DualsigsLogic address
          3: DappLogic address
          4: ...
     */
    address[] public authorizedLogics;

    // updated logics and their due time of becoming effective
    mapping (address => pending) public pendingLogics;

    // pending time before updated logics take effect
    struct pendingTime {
        uint curPendingTime;
        uint nextPendingTime;
        uint dueTime;
    }

    pendingTime public pt;

    // how many authorized logics
    uint public logicCount;

    constructor(address[] memory _initialLogics, uint256 _pendingTime) public
    {
        for (uint i = 0; i < _initialLogics.length; i++) {
            address logic = _initialLogics[i];
            authorized[logic] = true;
            logicCount += 1;
        }
        authorizedLogics = _initialLogics;

        pt.curPendingTime = _pendingTime;
        pt.nextPendingTime = _pendingTime;
        pt.dueTime = now;
    }

    function submitUpdatePendingTime(uint _pendingTime) external onlyOwner {
        pt.nextPendingTime = _pendingTime;
        pt.dueTime = pt.curPendingTime + now;
    }

    function triggerUpdatePendingTime() external {
        require(pt.dueTime <= now, "too early to trigger updatePendingTime");
        pt.curPendingTime = pt.nextPendingTime;
    }

    function isAuthorized(address _logic) external view returns (bool) {
        return authorized[_logic];
    }

    function getAuthorizedLogics() external view returns (address[] memory) {
        return authorizedLogics;
    }

    function submitUpdate(address _logic, bool _value) external onlyOwner {
        pending storage p = pendingLogics[_logic];
        p.value = _value;
        p.dueTime = now + pt.curPendingTime;
        emit UpdateLogicSubmitted(_logic, _value);
    }

    function cancelUpdate(address _logic) external onlyOwner {
        delete pendingLogics[_logic];
        emit UpdateLogicCancelled(_logic);
    }

    function triggerUpdateLogic(address _logic) external {
        pending memory p = pendingLogics[_logic];
        require(p.dueTime > 0, "pending logic not found");
        require(p.dueTime <= now, "too early to trigger updateLogic");
        updateLogic(_logic, p.value);
        delete pendingLogics[_logic];
    }

    function updateLogic(address _logic, bool _value) internal {
        if (authorized[_logic] != _value) {
            if(_value) {
                logicCount += 1;
                authorized[_logic] = true;
                authorizedLogics.push(_logic);
            }
            else {
                logicCount -= 1;
                require(logicCount > 0, "must have at least one logic module");
                delete authorized[_logic];
                removeLogic(_logic);
            }
            emit UpdateLogicDone(_logic, _value);
        }
    }

    function removeLogic(address _logic) internal {
        uint len = authorizedLogics.length;
        address lastLogic = authorizedLogics[len - 1];
        if (_logic != lastLogic) {
            for (uint i = 0; i < len; i++) {
                 if (_logic == authorizedLogics[i]) {
                     authorizedLogics[i] = lastLogic;
                     break;
                 }
            }
        }
        authorizedLogics.length--;
    }
}

contract AccountStorage {

    modifier allowAccountCallsOnly(Account _account) {
        require(msg.sender == address(_account), "caller must be account");
        _;
    }

    modifier allowAuthorizedLogicContractsCallsOnly(address payable _account) {
        require(LogicManager(Account(_account).manager()).isAuthorized(msg.sender), "not an authorized logic");
        _;
    }

    struct KeyItem {
        address pubKey;
        uint256 status;
    }

    struct BackupAccount {
        address backup;
        uint256 effectiveDate;//means not effective until this timestamp
        uint256 expiryDate;//means effective until this timestamp
    }

    struct DelayItem {
        bytes32 hash;
        uint256 dueTime;
    }

    struct Proposal {
        bytes32 hash;
        address[] approval;
    }

    // account => quantity of operation keys (index >= 1)
    mapping (address => uint256) operationKeyCount;

    // account => index => KeyItem
    mapping (address => mapping(uint256 => KeyItem)) keyData;

    // account => index => backup account
    mapping (address => mapping(uint256 => BackupAccount)) backupData;

    /* account => actionId => DelayItem

       delayData applies to these 4 actions:
       changeAdminKey, changeAllOperationKeys, unfreeze, changeAdminKeyByBackup
    */
    mapping (address => mapping(bytes4 => DelayItem)) delayData;

    // client account => proposer account => proposed actionId => Proposal
    mapping (address => mapping(address => mapping(bytes4 => Proposal))) proposalData;

    // *************** keyCount ********************** //

    function getOperationKeyCount(address _account) external view returns(uint256) {
        return operationKeyCount[_account];
    }

    function increaseKeyCount(address payable _account) external allowAuthorizedLogicContractsCallsOnly(_account) {
        operationKeyCount[_account] = operationKeyCount[_account] + 1;
    }

    // *************** keyData ********************** //

    function getKeyData(address _account, uint256 _index) public view returns(address) {
        KeyItem memory item = keyData[_account][_index];
        return item.pubKey;
    }

    function setKeyData(address payable _account, uint256 _index, address _key) external allowAuthorizedLogicContractsCallsOnly(_account) {
        require(_key != address(0), "invalid _key value");
        KeyItem storage item = keyData[_account][_index];
        item.pubKey = _key;
    }

    // *************** keyStatus ********************** //

    function getKeyStatus(address _account, uint256 _index) external view returns(uint256) {
        KeyItem memory item = keyData[_account][_index];
        return item.status;
    }

    function setKeyStatus(address payable _account, uint256 _index, uint256 _status) external allowAuthorizedLogicContractsCallsOnly(_account) {
        KeyItem storage item = keyData[_account][_index];
        item.status = _status;
    }

    // *************** backupData ********************** //

    function getBackupAddress(address _account, uint256 _index) external view returns(address) {
        BackupAccount memory b = backupData[_account][_index];
        return b.backup;
    }

    function getBackupEffectiveDate(address _account, uint256 _index) external view returns(uint256) {
        BackupAccount memory b = backupData[_account][_index];
        return b.effectiveDate;
    }

    function getBackupExpiryDate(address _account, uint256 _index) external view returns(uint256) {
        BackupAccount memory b = backupData[_account][_index];
        return b.expiryDate;
    }

    function setBackup(address payable _account, uint256 _index, address _backup, uint256 _effective, uint256 _expiry)
        external
        allowAuthorizedLogicContractsCallsOnly(_account)
    {
        BackupAccount storage b = backupData[_account][_index];
        b.backup = _backup;
        b.effectiveDate = _effective;
        b.expiryDate = _expiry;
    }

    function setBackupExpiryDate(address payable _account, uint256 _index, uint256 _expiry)
        external
        allowAuthorizedLogicContractsCallsOnly(_account)
    {
        BackupAccount storage b = backupData[_account][_index];
        b.expiryDate = _expiry;
    }

    function clearBackupData(address payable _account, uint256 _index) external allowAuthorizedLogicContractsCallsOnly(_account) {
        delete backupData[_account][_index];
    }

    // *************** delayData ********************** //

    function getDelayDataHash(address payable _account, bytes4 _actionId) external view returns(bytes32) {
        DelayItem memory item = delayData[_account][_actionId];
        return item.hash;
    }

    function getDelayDataDueTime(address payable _account, bytes4 _actionId) external view returns(uint256) {
        DelayItem memory item = delayData[_account][_actionId];
        return item.dueTime;
    }

    function setDelayData(address payable _account, bytes4 _actionId, bytes32 _hash, uint256 _dueTime) external allowAuthorizedLogicContractsCallsOnly(_account) {
        DelayItem storage item = delayData[_account][_actionId];
        item.hash = _hash;
        item.dueTime = _dueTime;
    }

    function clearDelayData(address payable _account, bytes4 _actionId) external allowAuthorizedLogicContractsCallsOnly(_account) {
        delete delayData[_account][_actionId];
    }

    // *************** proposalData ********************** //

    function getProposalDataHash(address _client, address _proposer, bytes4 _actionId) external view returns(bytes32) {
        Proposal memory p = proposalData[_client][_proposer][_actionId];
        return p.hash;
    }

    function getProposalDataApproval(address _client, address _proposer, bytes4 _actionId) external view returns(address[] memory) {
        Proposal memory p = proposalData[_client][_proposer][_actionId];
        return p.approval;
    }

    function setProposalData(address payable _client, address _proposer, bytes4 _actionId, bytes32 _hash, address _approvedBackup)
        external
        allowAuthorizedLogicContractsCallsOnly(_client)
    {
        Proposal storage p = proposalData[_client][_proposer][_actionId];
        if (p.hash > 0) {
            if (p.hash == _hash) {
                for (uint256 i = 0; i < p.approval.length; i++) {
                    require(p.approval[i] != _approvedBackup, "backup already exists");
                }
                p.approval.push(_approvedBackup);
            } else {
                p.hash = _hash;
                p.approval.length = 0;
            }
        } else {
            p.hash = _hash;
            p.approval.push(_approvedBackup);
        }
    }

    function clearProposalData(address payable _client, address _proposer, bytes4 _actionId) external allowAuthorizedLogicContractsCallsOnly(_client) {
        delete proposalData[_client][_proposer][_actionId];
    }


    // *************** init ********************** //
    function initAccount(Account _account, address[] calldata _keys, address[] calldata _backups)
        external
        allowAccountCallsOnly(_account)
    {
        require(getKeyData(address(_account), 0) == address(0), "AccountStorage: account already initialized!");
        require(_keys.length > 0, "empty keys array");

        operationKeyCount[address(_account)] = _keys.length - 1;

        for (uint256 index = 0; index < _keys.length; index++) {
            address _key = _keys[index];
            require(_key != address(0), "_key cannot be 0x0");
            KeyItem storage item = keyData[address(_account)][index];
            item.pubKey = _key;
            item.status = 0;
        }

        // avoid backup duplication if _backups.length > 1
        // normally won't check duplication, in most cases only one initial backup when initialization
        if (_backups.length > 1) {
            address[] memory bkps = _backups;
            for (uint256 i = 0; i < _backups.length; i++) {
                for (uint256 j = 0; j < i; j++) {
                    require(bkps[j] != _backups[i], "duplicate backup");
                }
            }
        }

        for (uint256 index = 0; index < _backups.length; index++) {
            address _backup = _backups[index];
            require(_backup != address(0), "backup cannot be 0x0");
            require(_backup != address(_account), "cannot be backup of oneself");

            backupData[address(_account)][index] = BackupAccount(_backup, now, uint256(-1));
        }
    }
}

/* The MIT License (MIT)

Copyright (c) 2016 Smart Contract Solutions, Inc.

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

    /**
    * @dev Multiplies two numbers, reverts on overflow.
    */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b);

        return c;
    }

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

        return c;
    }

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

        return c;
    }

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

        return c;
    }

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

    /**
    * @dev Returns ceil(a / b).
    */
    function ceil(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a / b;
        if(a % b == 0) {
            return c;
        }
        else {
            return c + 1;
        }
    }
}

contract BaseLogic {

    bytes constant internal SIGN_HASH_PREFIX = "\x19Ethereum Signed Message:\n32";

    mapping (address => uint256) keyNonce;
    AccountStorage public accountStorage;

    modifier allowSelfCallsOnly() {
        require (msg.sender == address(this), "only internal call is allowed");
        _;
    }

    modifier allowAccountCallsOnly(Account _account) {
        require(msg.sender == address(_account), "caller must be account");
        _;
    }

    event LogicInitialised(address wallet);

    // *************** Constructor ********************** //

    constructor(AccountStorage _accountStorage) public {
        accountStorage = _accountStorage;
    }

    // *************** Initialization ********************* //

    function initAccount(Account _account) external allowAccountCallsOnly(_account){
        emit LogicInitialised(address(_account));
    }

    // *************** Getter ********************** //

    function getKeyNonce(address _key) external view returns(uint256) {
        return keyNonce[_key];
    }

    // *************** Signature ********************** //

    function getSignHash(bytes memory _data, uint256 _nonce) internal view returns(bytes32) {
        // use EIP 191
        // 0x1900 + this logic address + data + nonce of signing key
        bytes32 msgHash = keccak256(abi.encodePacked(byte(0x19), byte(0), address(this), _data, _nonce));
        bytes32 prefixedHash = keccak256(abi.encodePacked(SIGN_HASH_PREFIX, msgHash));
        return prefixedHash;
    }

    function verifySig(address _signingKey, bytes memory _signature, bytes32 _signHash) internal pure {
        require(_signingKey != address(0), "invalid signing key");
        address recoveredAddr = recover(_signHash, _signature);
        require(recoveredAddr == _signingKey, "signature verification failed");
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * NOTE: This call _does not revert_ if the signature is invalid, or
     * if the signer is otherwise unable to be retrieved. In those scenarios,
     * the zero address is returned.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise)
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        // Check the signature length
        if (signature.length != 65) {
            return (address(0));
        }

        // Divide the signature in r, s and v variables
        bytes32 r;
        bytes32 s;
        uint8 v;

        // ecrecover takes the signature parameters, and the only way to get them
        // currently is to use assembly.
        // solhint-disable-next-line no-inline-assembly
        assembly {
            r := mload(add(signature, 0x20))
            s := mload(add(signature, 0x40))
            v := byte(0, mload(add(signature, 0x60)))
        }

        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return address(0);
        }

        if (v != 27 && v != 28) {
            return address(0);
        }

        // If the signature is valid (and not malleable), return the signer address
        return ecrecover(hash, v, r, s);
    }

    /* get signer address from data
    * @dev Gets an address encoded as the first argument in transaction data
    * @param b The byte array that should have an address as first argument
    * @returns a The address retrieved from the array
    */
    function getSignerAddress(bytes memory _b) internal pure returns (address _a) {
        require(_b.length >= 36, "invalid bytes");
        // solium-disable-next-line security/no-inline-assembly
        assembly {
            let mask := 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
            _a := and(mask, mload(add(_b, 36)))
            // b = {length:32}{method sig:4}{address:32}{...}
            // 36 is the offset of the first parameter of the data, if encoded properly.
            // 32 bytes for the length of the bytes array, and the first 4 bytes for the function signature.
            // 32 bytes is the length of the bytes array!!!!
        }
    }

    // get method id, first 4 bytes of data
    function getMethodId(bytes memory _b) internal pure returns (bytes4 _a) {
        require(_b.length >= 4, "invalid data");
        // solium-disable-next-line security/no-inline-assembly
        assembly {
            // 32 bytes is the length of the bytes array
            _a := mload(add(_b, 32))
        }
    }

    function checkKeyStatus(address _account, uint256 _index) internal {
        // check operation key status
        if (_index > 0) {
            require(accountStorage.getKeyStatus(_account, _index) != 1, "frozen key");
        }
    }

    // _nonce is timestamp in microsecond(1/1000000 second)
    function checkAndUpdateNonce(address _key, uint256 _nonce) internal {
        require(_nonce > keyNonce[_key], "nonce too small");
        require(SafeMath.div(_nonce, 1000000) <= now + 86400, "nonce too big"); // 86400=24*3600 seconds

        keyNonce[_key] = _nonce;
    }
}

contract AccountBaseLogic is BaseLogic {

    uint256 constant internal DELAY_CHANGE_ADMIN_KEY = 21 days;
    uint256 constant internal DELAY_CHANGE_OPERATION_KEY = 7 days;
    uint256 constant internal DELAY_UNFREEZE_KEY = 7 days;
    uint256 constant internal DELAY_CHANGE_BACKUP = 21 days;
    uint256 constant internal DELAY_CHANGE_ADMIN_KEY_BY_BACKUP = 30 days;

    uint256 constant internal MAX_DEFINED_BACKUP_INDEX = 5;

	// Equals to bytes4(keccak256("changeAdminKey(address,address)"))
	bytes4 internal constant CHANGE_ADMIN_KEY = 0xd595d935;
	// Equals to bytes4(keccak256("changeAdminKeyByBackup(address,address)"))
	bytes4 internal constant CHANGE_ADMIN_KEY_BY_BACKUP = 0xfdd54ba1;
	// Equals to bytes4(keccak256("changeAdminKeyWithoutDelay(address,address)"))
	bytes4 internal constant CHANGE_ADMIN_KEY_WITHOUT_DELAY = 0x441d2e50;
	// Equals to bytes4(keccak256("changeAllOperationKeys(address,address[])"))
	bytes4 internal constant CHANGE_ALL_OPERATION_KEYS = 0xd3b9d4d6;
	// Equals to bytes4(keccak256("unfreeze(address)"))
	bytes4 internal constant UNFREEZE = 0x45c8b1a6;

    event ProposalExecuted(address indexed client, address indexed proposer, bytes functionData);

    // *************** Constructor ********************** //

	constructor(AccountStorage _accountStorage)
		BaseLogic(_accountStorage)
		public
	{
	}

    // *************** Proposal ********************** //

    /* ‘executeProposal’ is shared by AccountLogic and DualsigsLogic,
       proposed actions called from 'executeProposal':
         AccountLogic: changeAdminKeyByBackup
         DualsigsLogic: changeAdminKeyWithoutDelay, changeAllOperationKeysWithoutDelay, unfreezeWithoutDelay
    */
    function executeProposal(address payable _client, address _proposer, bytes calldata _functionData) external {
        bytes4 proposedActionId = getMethodId(_functionData);
        bytes32 functionHash = keccak256(_functionData);

        checkApproval(_client, _proposer, proposedActionId, functionHash);

        // call functions with/without delay
        // solium-disable-next-line security/no-low-level-calls
        (bool success,) = address(this).call(_functionData);
        require(success, "executeProposal failed");

        accountStorage.clearProposalData(_client, _proposer, proposedActionId);
        emit ProposalExecuted(_client, _proposer, _functionData);
    }

    function checkApproval(address _client, address _proposer, bytes4 _proposedActionId, bytes32 _functionHash) internal view {
        bytes32 hash = accountStorage.getProposalDataHash(_client, _proposer, _proposedActionId);
        require(hash == _functionHash, "proposal hash unmatch");

        uint256 backupCount;
        uint256 approvedCount;
        address[] memory approved = accountStorage.getProposalDataApproval(_client, _proposer, _proposedActionId);
        require(approved.length > 0, "no approval");

        // iterate backup list
        for (uint256 i = 0; i <= MAX_DEFINED_BACKUP_INDEX; i++) {
            address backup = accountStorage.getBackupAddress(_client, i);
            uint256 effectiveDate = accountStorage.getBackupEffectiveDate(_client, i);
            uint256 expiryDate = accountStorage.getBackupExpiryDate(_client, i);
            if (backup != address(0) && isEffectiveBackup(effectiveDate, expiryDate)) {
                // count how many backups in backup list
                backupCount += 1;
                // iterate approved array
                for (uint256 k = 0; k < approved.length; k++) {
                    if (backup == approved[k]) {
                       // count how many approved backups still exist in backup list
                       approvedCount += 1;
                    }
                }
            }
        }
        require(backupCount > 0, "no backup in list");
        uint256 threshold = SafeMath.ceil(backupCount*6, 10);
        require(approvedCount >= threshold, "must have 60% approval at least");
    }

    function checkRelation(address _client, address _backup) internal view {
        require(_backup != address(0), "backup cannot be 0x0");
        require(_client != address(0), "client cannot be 0x0");
        bool isBackup;
        for (uint256 i = 0; i <= MAX_DEFINED_BACKUP_INDEX; i++) {
            address backup = accountStorage.getBackupAddress(_client, i);
            uint256 effectiveDate = accountStorage.getBackupEffectiveDate(_client, i);
            uint256 expiryDate = accountStorage.getBackupExpiryDate(_client, i);
            // backup match and effective and not expired
            if (_backup == backup && isEffectiveBackup(effectiveDate, expiryDate)) {
                isBackup = true;
                break;
            }
        }
        require(isBackup, "backup does not exist in list");
    }

    function isEffectiveBackup(uint256 _effectiveDate, uint256 _expiryDate) internal view returns(bool) {
        return (_effectiveDate <= now) && (_expiryDate > now);
    }

    function clearRelatedProposalAfterAdminKeyChanged(address payable _client) internal {
        //clear any existing proposal proposed by both, proposer is _client
        accountStorage.clearProposalData(_client, _client, CHANGE_ADMIN_KEY_WITHOUT_DELAY);

        //clear any existing proposal proposed by backup, proposer is one of the backups
        for (uint256 i = 0; i <= MAX_DEFINED_BACKUP_INDEX; i++) {
            address backup = accountStorage.getBackupAddress(_client, i);
            uint256 effectiveDate = accountStorage.getBackupEffectiveDate(_client, i);
            uint256 expiryDate = accountStorage.getBackupExpiryDate(_client, i);
            if (backup != address(0) && isEffectiveBackup(effectiveDate, expiryDate)) {
                accountStorage.clearProposalData(_client, backup, CHANGE_ADMIN_KEY_BY_BACKUP);
            }
        }
    }

}

/**
* @title DualsigsLogic
*/
contract DualsigsLogic is AccountBaseLogic {

	// Equals to bytes4(keccak256("changeAllOperationKeysWithoutDelay(address,address[])"))
	bytes4 private constant CHANGE_ALL_OPERATION_KEYS_WITHOUT_DELAY = 0x02064abc;
	// Equals to bytes4(keccak256("unfreezeWithoutDelay(address)"))
	bytes4 private constant UNFREEZE_WITHOUT_DELAY = 0x69521650;
	// Equals to bytes4(keccak256("addBackup(address,address)"))
	bytes4 private constant ADD_BACKUP = 0x426b7407;
	// Equals to bytes4(keccak256("proposeByBoth(address,address,bytes)"))
	bytes4 private constant PROPOSE_BY_BOTH = 0x7548cb94;

    event DualsigsLogicInitialised(address indexed account);
    event DualsigsLogicEntered(bytes data, uint256 indexed clientNonce, uint256 backupNonce);

	modifier allowDualSigsActionOnly(bytes memory _data) {
		bytes4 methodId = getMethodId(_data);
		require ((methodId == ADD_BACKUP) ||
			     (methodId == PROPOSE_BY_BOTH), "wrong entry");
		_;
	}

	// *************** Constructor ********************** //

	constructor(AccountStorage _accountStorage)
		AccountBaseLogic(_accountStorage)
		public
	{
	}

    // *************** Initialization ********************* //

    function initAccount(Account _account) external allowAccountCallsOnly(_account){
        emit DualsigsLogicInitialised(address(_account));
    }

	// *************** action entry ********************** //

    /* DualsigsLogic has 2 actions called from 'enter':
        addBackup, proposeByBoth
	*/
	function enter(
		bytes calldata _data, bytes calldata _clientSig, bytes calldata _backupSig, uint256 _clientNonce, uint256 _backupNonce
	)
		external allowDualSigsActionOnly(_data)
	{
        verifyClient(_data, _clientSig, _clientNonce);
        verifyBackup(_data, _backupSig, _backupNonce);
 
		// solium-disable-next-line security/no-low-level-calls
		(bool success,) = address(this).call(_data);
		require(success, "enterWithDualSigs failed");
		emit DualsigsLogicEntered(_data, _clientNonce, _backupNonce);
	}

	function verifyClient(bytes memory _data, bytes memory _clientSig, uint256 _clientNonce) internal {
		address client = getSignerAddress(_data);
		//client sign with admin key
		uint256 clientKeyIndex = 0;
		checkKeyStatus(client, clientKeyIndex);
		address signingKey = accountStorage.getKeyData(client, clientKeyIndex);
		if ((getMethodId(_data) == PROPOSE_BY_BOTH) && 
		    (getProposedMethodId(_data) == CHANGE_ADMIN_KEY_WITHOUT_DELAY)) {
			// if proposed action is 'changeAdminKeyWithoutDelay', do not check _clientNonce
			verifySig(signingKey, _clientSig, getSignHashWithoutNonce(_data));
		} else {
			checkAndUpdateNonce(signingKey, _clientNonce);
			verifySig(signingKey, _clientSig, getSignHash(_data, _clientNonce));
		}
	}

    function verifyBackup(bytes memory _data, bytes memory _backupSig, uint256 _backupNonce) internal {
		address backup = getSecondSignerAddress(_data);
		//backup sign with assist key
		uint256 backupKeyIndex = 4;
		checkKeyStatus(backup, backupKeyIndex);
		address signingKey = accountStorage.getKeyData(backup, backupKeyIndex);
		checkAndUpdateNonce(signingKey, _backupNonce);
		verifySig(signingKey, _backupSig, getSignHash(_data, _backupNonce));
	}

	// *************** change admin key ********************** //

    // called from 'executeProposal'
	function changeAdminKeyWithoutDelay(address payable _account, address _pkNew) external allowSelfCallsOnly {
		address pk = accountStorage.getKeyData(_account, 0);
		require(pk != _pkNew, "identical admin key already exists");
		require(_pkNew != address(0), "0x0 is invalid");
		accountStorage.setKeyData(_account, 0, _pkNew);
		//clear any existing related delay data and proposal
		accountStorage.clearDelayData(_account, CHANGE_ADMIN_KEY);
		accountStorage.clearDelayData(_account, CHANGE_ADMIN_KEY_BY_BACKUP);
		accountStorage.clearDelayData(_account, CHANGE_ALL_OPERATION_KEYS);
		accountStorage.clearDelayData(_account, UNFREEZE);
		clearRelatedProposalAfterAdminKeyChanged(_account);
	}

	// *************** change all operation keys ********************** //

    // called from 'executeProposal'
	function changeAllOperationKeysWithoutDelay(address payable _account, address[] calldata _pks) external allowSelfCallsOnly {
		uint256 keyCount = accountStorage.getOperationKeyCount(_account);
		require(_pks.length == keyCount, "invalid number of keys");
		for (uint256 i = 0; i < keyCount; i++) {
			address pk = _pks[i];
			require(pk != address(0), "0x0 is invalid");
			accountStorage.setKeyData(_account, i+1, pk);
			accountStorage.setKeyStatus(_account, i+1, 0);
		}
	}

	// *************** freeze/unfreeze all operation keys ********************** //

    // called from 'executeProposal'
	function unfreezeWithoutDelay(address payable _account) external allowSelfCallsOnly {
		for (uint256 i = 0; i < accountStorage.getOperationKeyCount(_account); i++) {
			if (accountStorage.getKeyStatus(_account, i+1) == 1) {
				accountStorage.setKeyStatus(_account, i+1, 0);
			}
		}
	}

	// *************** add backup ********************** //

    // called from 'enter'
	function addBackup(address payable _account, address _backup) external allowSelfCallsOnly {
		require(_account != _backup, "cannot be backup of oneself");
		uint256 index = findAvailableSlot(_account, _backup);
		require(index <= MAX_DEFINED_BACKUP_INDEX, "invalid or duplicate or no vacancy");
		accountStorage.setBackup(_account, index, _backup, now + DELAY_CHANGE_BACKUP, uint256(-1));
	}

    // return backupData index(0~5), 6 means not found
    // 'available' means empty or expired
	function findAvailableSlot(address _account, address _backup) public view returns(uint) {
		uint index = MAX_DEFINED_BACKUP_INDEX + 1;
		if (_backup == address(0)) {
			return index;
		}
		for (uint256 i = 0; i <= MAX_DEFINED_BACKUP_INDEX; i++) {
            address backup = accountStorage.getBackupAddress(_account, i);
            uint256 expiryDate = accountStorage.getBackupExpiryDate(_account, i);
			// _backup already exists and not expired
			if ((backup == _backup) && (expiryDate > now)) {
				return MAX_DEFINED_BACKUP_INDEX + 1;
			}
			if (index > MAX_DEFINED_BACKUP_INDEX) {
				// zero address or backup expired
				if ((backup == address(0)) || (expiryDate <= now)) {
	                index = i;
				}
			}
		}
		return index;
	}

	// *************** propose, approve, execute and cancel proposal ********************** //

    // called from 'enter'
	// proposer is client in the case of 'proposeByBoth'
	function proposeByBoth(address payable _client, address _backup, bytes calldata _functionData) external allowSelfCallsOnly {
		bytes4 proposedActionId = getMethodId(_functionData);
		require(isFastAction(proposedActionId), "invalid proposal");
		checkRelation(_client, _backup);
		bytes32 functionHash = keccak256(_functionData);
		accountStorage.setProposalData(_client, _client, proposedActionId, functionHash, _backup);
	}

	function isFastAction(bytes4 _actionId) internal pure returns(bool) {
		if ((_actionId == CHANGE_ADMIN_KEY_WITHOUT_DELAY) ||
			(_actionId == CHANGE_ALL_OPERATION_KEYS_WITHOUT_DELAY) ||
			(_actionId == UNFREEZE_WITHOUT_DELAY))
		{
			return true;
		}
		return false;
	}

	// *************** internal functions ********************** //

	function getSecondSignerAddress(bytes memory _b) internal pure returns (address _a) {
		require(_b.length >= 68, "data length too short");
		// solium-disable-next-line security/no-inline-assembly
		assembly {
			//68 = 32 + 4 + 32
			let mask := 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
			_a := and(mask, mload(add(_b, 68)))
		}
	}

    function getProposedMethodId(bytes memory _b) internal pure returns (bytes4 _a) {
		require(_b.length >= 164, "data length too short");
        // solium-disable-next-line security/no-inline-assembly
        assembly {
			/* 'proposeByBoth' data example:
			0x
			7548cb94                                                            // method id
			000000000000000000000000b7055946345ad40f8cca3feb075dfadd9e2641b5    // param 0
			00000000000000000000000011390e32ccdfb3f85e92b949c72fe482d77838f3    // param 1
			0000000000000000000000000000000000000000000000000000000000000060    // data length including padding
			0000000000000000000000000000000000000000000000000000000000000044    // true data length
			441d2e50                                                            // method id(proposed method: changeAdminKeyWithoutDelay)
			000000000000000000000000b7055946345ad40f8cca3feb075dfadd9e2641b5    // param 0
			00000000000000000000000013667a2711960c95fae074f90e0f739bc324d1ed    // param 1
			00000000000000000000000000000000000000000000000000000000            // padding
			*/
            // the first 32 bytes is the length of the bytes array _b
			// 32 + 4 + 32 + 32 + 32 + 32 = 164
            _a := mload(add(_b, 164))
        }
    }

    function getSignHashWithoutNonce(bytes memory _data) internal view returns(bytes32) {
        // use EIP 191
        // 0x1900 + this logic address + data
        bytes32 msgHash = keccak256(abi.encodePacked(byte(0x19), byte(0), address(this), _data));
        bytes32 prefixedHash = keccak256(abi.encodePacked(SIGN_HASH_PREFIX, msgHash));
        return prefixedHash;
    }

}

Contract Security Audit

Contract ABI

API
[{"constant":false,"inputs":[{"name":"_account","type":"address"},{"name":"_pks","type":"address[]"}],"name":"changeAllOperationKeysWithoutDelay","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_key","type":"address"}],"name":"getKeyNonce","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_account","type":"address"},{"name":"_backup","type":"address"}],"name":"findAvailableSlot","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"},{"name":"_backup","type":"address"}],"name":"addBackup","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"},{"name":"_pkNew","type":"address"}],"name":"changeAdminKeyWithoutDelay","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"}],"name":"initAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_data","type":"bytes"},{"name":"_clientSig","type":"bytes"},{"name":"_backupSig","type":"bytes"},{"name":"_clientNonce","type":"uint256"},{"name":"_backupNonce","type":"uint256"}],"name":"enter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"}],"name":"unfreezeWithoutDelay","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_client","type":"address"},{"name":"_backup","type":"address"},{"name":"_functionData","type":"bytes"}],"name":"proposeByBoth","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"accountStorage","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_client","type":"address"},{"name":"_proposer","type":"address"},{"name":"_functionData","type":"bytes"}],"name":"executeProposal","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_accountStorage","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"DualsigsLogicInitialised","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"data","type":"bytes"},{"indexed":true,"name":"clientNonce","type":"uint256"},{"indexed":false,"name":"backupNonce","type":"uint256"}],"name":"DualsigsLogicEntered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"client","type":"address"},{"indexed":true,"name":"proposer","type":"address"},{"indexed":false,"name":"functionData","type":"bytes"}],"name":"ProposalExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"wallet","type":"address"}],"name":"LogicInitialised","type":"event"}]

608060405234801561001057600080fd5b506040516020806131958339810180604052602081101561003057600080fd5b505160018054600160a060020a031916600160a060020a03909216919091179055613135806100606000396000f3fe608060405234801561001057600080fd5b50600436106100c6576000357c0100000000000000000000000000000000000000000000000000000000900480635a6c41581161008e5780635a6c41581461020f5780635ac6c39414610235578063695216501461034f5780637548cb9414610375578063c281fb72146103fe578063cc5b287314610422576100c6565b806302064abc146100cb5780630978ec671461014d578063370eba7414610185578063426b7407146101b3578063441d2e50146101e1575b600080fd5b61014b600480360360408110156100e157600080fd5b600160a060020a03823516919081019060408101602082013564010000000081111561010c57600080fd5b82018360208201111561011e57600080fd5b8035906020019184602083028401116401000000008311171561014057600080fd5b5090925090506104ab565b005b6101736004803603602081101561016357600080fd5b5035600160a060020a03166107aa565b60408051918252519081900360200190f35b6101736004803603604081101561019b57600080fd5b50600160a060020a03813581169160200135166107c9565b61014b600480360360408110156101c957600080fd5b50600160a060020a038135811691602001351661096a565b61014b600480360360408110156101f757600080fd5b50600160a060020a0381358116916020013516610b0a565b61014b6004803603602081101561022557600080fd5b5035600160a060020a0316610f70565b61014b600480360360a081101561024b57600080fd5b81019060208101813564010000000081111561026657600080fd5b82018360208201111561027857600080fd5b8035906020019184600183028401116401000000008311171561029a57600080fd5b9193909290916020810190356401000000008111156102b857600080fd5b8201836020820111156102ca57600080fd5b803590602001918460018302840111640100000000831117156102ec57600080fd5b91939092909160208101903564010000000081111561030a57600080fd5b82018360208201111561031c57600080fd5b8035906020019184600183028401116401000000008311171561033e57600080fd5b919350915080359060200135611009565b61014b6004803603602081101561036557600080fd5b5035600160a060020a0316611321565b61014b6004803603606081101561038b57600080fd5b600160a060020a0382358116926020810135909116918101906060810160408201356401000000008111156103bf57600080fd5b8201836020820111156103d157600080fd5b803590602001918460018302840111640100000000831117156103f357600080fd5b509092509050611541565b6104066116fd565b60408051600160a060020a039092168252519081900360200190f35b61014b6004803603606081101561043857600080fd5b600160a060020a03823581169260208101359091169181019060608101604082013564010000000081111561046c57600080fd5b82018360208201111561047e57600080fd5b803590602001918460018302840111640100000000831117156104a057600080fd5b50909250905061170c565b3330146104f0576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206130a6833981519152604482015290519081900360640190fd5b600154604080517fd01e547f000000000000000000000000000000000000000000000000000000008152600160a060020a0386811660048301529151600093929092169163d01e547f91602480820192602092909190829003018186803b15801561055a57600080fd5b505afa15801561056e573d6000803e3d6000fd5b505050506040513d602081101561058457600080fd5b505190508181146105df576040805160e560020a62461bcd02815260206004820152601660248201527f696e76616c6964206e756d626572206f66206b65797300000000000000000000604482015290519081900360640190fd5b60005b818110156107a35760008484838181106105f857fe5b90506020020135600160a060020a031690506000600160a060020a031681600160a060020a031614151515610677576040805160e560020a62461bcd02815260206004820152600e60248201527f30783020697320696e76616c6964000000000000000000000000000000000000604482015290519081900360640190fd5b60018054604080517f52d43b46000000000000000000000000000000000000000000000000000000008152600160a060020a038a8116600483015293860160248201528484166044820152905192909116916352d43b469160648082019260009290919082900301818387803b1580156106f057600080fd5b505af1158015610704573d6000803e3d6000fd5b505060018054604080517fe4d1ba07000000000000000000000000000000000000000000000000000000008152600160a060020a038c811660048301529388016024820152600060448201819052915193909216945063e4d1ba079350606480830193919282900301818387803b15801561077e57600080fd5b505af1158015610792573d6000803e3d6000fd5b5050600190930192506105e2915050565b5050505050565b600160a060020a0381166000908152602081905260409020545b919050565b60006006600160a060020a03831615156107e4579050610964565b60005b60058111610960576001546040805160e160020a6365865bb5028152600160a060020a038881166004830152602482018590529151600093929092169163cb0cb76a91604480820192602092909190829003018186803b15801561084a57600080fd5b505afa15801561085e573d6000803e3d6000fd5b505050506040513d602081101561087457600080fd5b50516001546040805160e160020a63473965d7028152600160a060020a038a811660048301526024820187905291519394506000939190921691638e72cbae916044808301926020929190829003018186803b1580156108d357600080fd5b505afa1580156108e7573d6000803e3d6000fd5b505050506040513d60208110156108fd57600080fd5b50519050600160a060020a0382811690871614801561091b57504281115b1561092e57506006935061096492505050565b600584111561095657600160a060020a038216158061094d5750428111155b15610956578293505b50506001016107e7565b5090505b92915050565b3330146109af576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206130a6833981519152604482015290519081900360640190fd5b600160a060020a038281169082161415610a13576040805160e560020a62461bcd02815260206004820152601b60248201527f63616e6e6f74206265206261636b7570206f66206f6e6573656c660000000000604482015290519081900360640190fd5b6000610a1f83836107c9565b90506005811115610a645760405160e560020a62461bcd0281526004018080602001828103825260228152602001806130e86022913960400191505060405180910390fd5b600154604080517fe5632dee000000000000000000000000000000000000000000000000000000008152600160a060020a03868116600483015260248201859052858116604483015242621baf8001606483015260001960848301529151919092169163e5632dee9160a480830192600092919082900301818387803b158015610aed57600080fd5b505af1158015610b01573d6000803e3d6000fd5b50505050505050565b333014610b4f576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206130a6833981519152604482015290519081900360640190fd5b600154604080517f8d431198000000000000000000000000000000000000000000000000000000008152600160a060020a038581166004830152600060248301819052925192931691638d43119891604480820192602092909190829003018186803b158015610bbe57600080fd5b505afa158015610bd2573d6000803e3d6000fd5b505050506040513d6020811015610be857600080fd5b50519050600160a060020a038082169083161415610c3a5760405160e560020a62461bcd0281526004018080602001828103825260228152602001806130c66022913960400191505060405180910390fd5b600160a060020a0382161515610c9a576040805160e560020a62461bcd02815260206004820152600e60248201527f30783020697320696e76616c6964000000000000000000000000000000000000604482015290519081900360640190fd5b600154604080517f52d43b46000000000000000000000000000000000000000000000000000000008152600160a060020a038681166004830152600060248301819052868216604484015292519316926352d43b469260648084019391929182900301818387803b158015610d0e57600080fd5b505af1158015610d22573d6000803e3d6000fd5b50506001546040805160e160020a634796da83028152600160a060020a0388811660048301527fd595d9350000000000000000000000000000000000000000000000000000000060248301529151919092169350638f2db5069250604480830192600092919082900301818387803b158015610d9d57600080fd5b505af1158015610db1573d6000803e3d6000fd5b50506001546040805160e160020a634796da83028152600160a060020a0388811660048301527ffdd54ba10000000000000000000000000000000000000000000000000000000060248301529151919092169350638f2db5069250604480830192600092919082900301818387803b158015610e2c57600080fd5b505af1158015610e40573d6000803e3d6000fd5b50506001546040805160e160020a634796da83028152600160a060020a0388811660048301527fd3b9d4d60000000000000000000000000000000000000000000000000000000060248301529151919092169350638f2db5069250604480830192600092919082900301818387803b158015610ebb57600080fd5b505af1158015610ecf573d6000803e3d6000fd5b50506001546040805160e160020a634796da83028152600160a060020a0388811660048301527f45c8b1a60000000000000000000000000000000000000000000000000000000060248301529151919092169350638f2db5069250604480830192600092919082900301818387803b158015610f4a57600080fd5b505af1158015610f5e573d6000803e3d6000fd5b50505050610f6b83611950565b505050565b8033600160a060020a03821614610fd1576040805160e560020a62461bcd02815260206004820152601660248201527f63616c6c6572206d757374206265206163636f756e7400000000000000000000604482015290519081900360640190fd5b604051600160a060020a038316907f5225703c8dffe03175a93829d26cf60c83e6af9fd1828c13102f1ac30a8c877c90600090a25050565b87878080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250925061104a9150839050611c94565b9050600160e060020a031981167f426b74070000000000000000000000000000000000000000000000000000000014806110ad5750600160e060020a031981167f7548cb9400000000000000000000000000000000000000000000000000000000145b1515611103576040805160e560020a62461bcd02815260206004820152600b60248201527f77726f6e6720656e747279000000000000000000000000000000000000000000604482015290519081900360640190fd5b6111788a8a8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8e018190048102820181019092528c815292508c91508b9081908401838280828437600092019190915250899250611cfa915050565b6111ed8a8a8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8c018190048102820181019092528a815292508a9150899081908401838280828437600092019190915250889250611e62915050565b600030600160a060020a03168b8b604051808383808284376040519201945060009350909150508083038183865af19150503d806000811461124b576040519150601f19603f3d011682016040523d82523d6000602084013e611250565b606091505b505090508015156112ab576040805160e560020a62461bcd02815260206004820152601860248201527f656e746572576974684475616c53696773206661696c65640000000000000000604482015290519081900360640190fd5b847f9bb189d41c9c6ff433f6726f149aed82fe9ae766771663b5eea49ffb71037d178c8c8760405180806020018381526020018281038252858582818152602001925080828437600083820152604051601f909101601f1916909201829003965090945050505050a25050505050505050505050565b333014611366576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206130a6833981519152604482015290519081900360640190fd5b60005b600154604080517fd01e547f000000000000000000000000000000000000000000000000000000008152600160a060020a0385811660048301529151919092169163d01e547f916024808301926020929190829003018186803b1580156113cf57600080fd5b505afa1580156113e3573d6000803e3d6000fd5b505050506040513d60208110156113f957600080fd5b505181101561153d5760018054604080517f43090116000000000000000000000000000000000000000000000000000000008152600160a060020a038681166004830152938501602482015290519290911691634309011691604480820192602092909190829003018186803b15801561147257600080fd5b505afa158015611486573d6000803e3d6000fd5b505050506040513d602081101561149c57600080fd5b5051600114156115355760018054604080517fe4d1ba07000000000000000000000000000000000000000000000000000000008152600160a060020a03868116600483015293850160248201526000604482018190529151939092169263e4d1ba0792606480820193929182900301818387803b15801561151c57600080fd5b505af1158015611530573d6000803e3d6000fd5b505050505b600101611369565b5050565b333014611586576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206130a6833981519152604482015290519081900360640190fd5b60006115c783838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611c9492505050565b90506115d281611f24565b1515611628576040805160e560020a62461bcd02815260206004820152601060248201527f696e76616c69642070726f706f73616c00000000000000000000000000000000604482015290519081900360640190fd5b6116328585611fd0565b6000838360405180838380828437604080519190930181900381206001547f6bc77abe000000000000000000000000000000000000000000000000000000008352600160a060020a038e8116600485018190526024850152600160e060020a03198b166044850152606484018390528d811660848501529451919850939093169550636bc77abe945060a4808201945060009392509082900301818387803b1580156116dd57600080fd5b505af11580156116f1573d6000803e3d6000fd5b50505050505050505050565b600154600160a060020a031681565b600061174d83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611c9492505050565b9050600083836040518083838082843780830192505050925050506040518091039020905061177e868684846122e1565b600030600160a060020a03168585604051808383808284376040519201945060009350909150508083038183865af19150503d80600081146117dc576040519150601f19603f3d011682016040523d82523d6000602084013e6117e1565b606091505b5050905080151561183c576040805160e560020a62461bcd02815260206004820152601660248201527f6578656375746550726f706f73616c206661696c656400000000000000000000604482015290519081900360640190fd5b600154604080517f21c32c9c000000000000000000000000000000000000000000000000000000008152600160a060020a038a811660048301528981166024830152600160e060020a031987166044830152915191909216916321c32c9c91606480830192600092919082900301818387803b1580156118bb57600080fd5b505af11580156118cf573d6000803e3d6000fd5b5050505085600160a060020a031687600160a060020a03167f252a9bd6833c7a9f17515f224bb60795a2af85f62afce5d54e5832754fa59670878760405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a350505050505050565b600154604080517f21c32c9c000000000000000000000000000000000000000000000000000000008152600160a060020a038481166004830181905260248301527f441d2e50000000000000000000000000000000000000000000000000000000006044830152915191909216916321c32c9c91606480830192600092919082900301818387803b1580156119e457600080fd5b505af11580156119f8573d6000803e3d6000fd5b506000925050505b6005811161153d576001546040805160e160020a6365865bb5028152600160a060020a038581166004830152602482018590529151600093929092169163cb0cb76a91604480820192602092909190829003018186803b158015611a6357600080fd5b505afa158015611a77573d6000803e3d6000fd5b505050506040513d6020811015611a8d57600080fd5b5051600154604080517fdb80821d000000000000000000000000000000000000000000000000000000008152600160a060020a038781166004830152602482018790529151939450600093919092169163db80821d916044808301926020929190829003018186803b158015611b0257600080fd5b505afa158015611b16573d6000803e3d6000fd5b505050506040513d6020811015611b2c57600080fd5b50516001546040805160e160020a63473965d7028152600160a060020a0388811660048301526024820188905291519394506000939190921691638e72cbae916044808301926020929190829003018186803b158015611b8b57600080fd5b505afa158015611b9f573d6000803e3d6000fd5b505050506040513d6020811015611bb557600080fd5b50519050600160a060020a03831615801590611bd65750611bd68282612860565b15611c8957600154604080517f21c32c9c000000000000000000000000000000000000000000000000000000008152600160a060020a03888116600483015286811660248301527ffdd54ba1000000000000000000000000000000000000000000000000000000006044830152915191909216916321c32c9c91606480830192600092919082900301818387803b158015611c7057600080fd5b505af1158015611c84573d6000803e3d6000fd5b505050505b505050600101611a00565b60006004825110151515611cf2576040805160e560020a62461bcd02815260206004820152600c60248201527f696e76616c696420646174610000000000000000000000000000000000000000604482015290519081900360640190fd5b506020015190565b6000611d0584612878565b90506000611d1382826128e7565b600154604080517f8d431198000000000000000000000000000000000000000000000000000000008152600160a060020a0385811660048301526024820185905291516000939290921691638d43119891604480820192602092909190829003018186803b158015611d8457600080fd5b505afa158015611d98573d6000803e3d6000fd5b505050506040513d6020811015611dae57600080fd5b505190507f7548cb9400000000000000000000000000000000000000000000000000000000611ddc87611c94565b600160e060020a031916148015611e2457507f441d2e5000000000000000000000000000000000000000000000000000000000611e18876129e1565b600160e060020a031916145b15611e4157611e3c8186611e3789612a47565b612bb5565b611e5a565b611e4b8185612c8c565b611e5a8186611e378988612d80565b505050505050565b6000611e6d84612eef565b90506004611e7b82826128e7565b600154604080517f8d431198000000000000000000000000000000000000000000000000000000008152600160a060020a0385811660048301526024820185905291516000939290921691638d43119891604480820192602092909190829003018186803b158015611eec57600080fd5b505afa158015611f00573d6000803e3d6000fd5b505050506040513d6020811015611f1657600080fd5b50519050611e4b8185612c8c565b6000600160e060020a031982167f441d2e50000000000000000000000000000000000000000000000000000000001480611f875750600160e060020a031982167f02064abc00000000000000000000000000000000000000000000000000000000145b80611fbb5750600160e060020a031982167f6952165000000000000000000000000000000000000000000000000000000000145b15611fc8575060016107c4565b506000919050565b600160a060020a0381161515612030576040805160e560020a62461bcd02815260206004820152601460248201527f6261636b75702063616e6e6f7420626520307830000000000000000000000000604482015290519081900360640190fd5b600160a060020a0382161515612090576040805160e560020a62461bcd02815260206004820152601460248201527f636c69656e742063616e6e6f7420626520307830000000000000000000000000604482015290519081900360640190fd5b6000805b60058111612289576001546040805160e160020a6365865bb5028152600160a060020a038781166004830152602482018590529151600093929092169163cb0cb76a91604480820192602092909190829003018186803b1580156120f757600080fd5b505afa15801561210b573d6000803e3d6000fd5b505050506040513d602081101561212157600080fd5b5051600154604080517fdb80821d000000000000000000000000000000000000000000000000000000008152600160a060020a038981166004830152602482018790529151939450600093919092169163db80821d916044808301926020929190829003018186803b15801561219657600080fd5b505afa1580156121aa573d6000803e3d6000fd5b505050506040513d60208110156121c057600080fd5b50516001546040805160e160020a63473965d7028152600160a060020a038a811660048301526024820188905291519394506000939190921691638e72cbae916044808301926020929190829003018186803b15801561221f57600080fd5b505afa158015612233573d6000803e3d6000fd5b505050506040513d602081101561224957600080fd5b50519050600160a060020a0386811690841614801561226d575061226d8282612860565b1561227e5760019450505050612289565b505050600101612094565b50801515610f6b576040805160e560020a62461bcd02815260206004820152601d60248201527f6261636b757020646f6573206e6f7420657869737420696e206c697374000000604482015290519081900360640190fd5b600154604080517f60791b88000000000000000000000000000000000000000000000000000000008152600160a060020a0387811660048301528681166024830152600160e060020a031986166044830152915160009392909216916360791b8891606480820192602092909190829003018186803b15801561236357600080fd5b505afa158015612377573d6000803e3d6000fd5b505050506040513d602081101561238d57600080fd5b505190508181146123e8576040805160e560020a62461bcd02815260206004820152601560248201527f70726f706f73616c206861736820756e6d617463680000000000000000000000604482015290519081900360640190fd5b600154604080517f70c460f8000000000000000000000000000000000000000000000000000000008152600160a060020a0388811660048301528781166024830152600160e060020a031987166044830152915160009384936060939116916370c460f8916064808201928792909190829003018186803b15801561246c57600080fd5b505afa158015612480573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156124a957600080fd5b8101908080516401000000008111156124c157600080fd5b820160208101848111156124d457600080fd5b81518560208202830111640100000000821117156124f157600080fd5b505080519094506000109250612554915050576040805160e560020a62461bcd02815260206004820152600b60248201527f6e6f20617070726f76616c000000000000000000000000000000000000000000604482015290519081900360640190fd5b60005b60058111612792576001546040805160e160020a6365865bb5028152600160a060020a038c81166004830152602482018590529151600093929092169163cb0cb76a91604480820192602092909190829003018186803b1580156125ba57600080fd5b505afa1580156125ce573d6000803e3d6000fd5b505050506040513d60208110156125e457600080fd5b5051600154604080517fdb80821d000000000000000000000000000000000000000000000000000000008152600160a060020a038e81166004830152602482018790529151939450600093919092169163db80821d916044808301926020929190829003018186803b15801561265957600080fd5b505afa15801561266d573d6000803e3d6000fd5b505050506040513d602081101561268357600080fd5b50516001546040805160e160020a63473965d7028152600160a060020a038f811660048301526024820188905291519394506000939190921691638e72cbae916044808301926020929190829003018186803b1580156126e257600080fd5b505afa1580156126f6573d6000803e3d6000fd5b505050506040513d602081101561270c57600080fd5b50519050600160a060020a0383161580159061272d575061272d8282612860565b15612787576001969096019560005b855181101561278557858181518110151561275357fe5b90602001906020020151600160a060020a031684600160a060020a0316141561277d576001870196505b60010161273c565b505b505050600101612557565b50600083116127eb576040805160e560020a62461bcd02815260206004820152601160248201527f6e6f206261636b757020696e206c697374000000000000000000000000000000604482015290519081900360640190fd5b60006127fb84600602600a612f5e565b905080831015612855576040805160e560020a62461bcd02815260206004820152601f60248201527f6d75737420686176652036302520617070726f76616c206174206c6561737400604482015290519081900360640190fd5b505050505050505050565b600042831115801561287157504282115b9392505050565b600060248251101515156128d6576040805160e560020a62461bcd02815260206004820152600d60248201527f696e76616c696420627974657300000000000000000000000000000000000000604482015290519081900360640190fd5b5060240151600160a060020a031690565b600081111561153d57600154604080517f43090116000000000000000000000000000000000000000000000000000000008152600160a060020a03858116600483015260248201859052915191909216916343090116916044808301926020929190829003018186803b15801561295d57600080fd5b505afa158015612971573d6000803e3d6000fd5b505050506040513d602081101561298757600080fd5b50516001141561153d576040805160e560020a62461bcd02815260206004820152600a60248201527f66726f7a656e206b657900000000000000000000000000000000000000000000604482015290519081900360640190fd5b600060a4825110151515612a3f576040805160e560020a62461bcd02815260206004820152601560248201527f64617461206c656e67746820746f6f2073686f72740000000000000000000000604482015290519081900360640190fd5b5060a4015190565b6040517f19000000000000000000000000000000000000000000000000000000000000006020808301828152600060218501819052306c01000000000000000000000000810260228701528651919586959486949293899392603601918401908083835b60208310612aca5780518252601f199092019160209182019101612aab565b6001836020036101000a03801982511681845116808217855250505050505090500194505050505060405160208183030381529060405280519060200120905060006040805190810160405280601c81526020017f19457468657265756d205369676e6564204d6573736167653a0a333200000000815250826040516020018083805190602001908083835b60208310612b755780518252601f199092019160209182019101612b56565b51815160209384036101000a6000190180199092169116179052920193845250604080518085038152938201905282519201919091209695505050505050565b600160a060020a0383161515612c15576040805160e560020a62461bcd02815260206004820152601360248201527f696e76616c6964207369676e696e67206b657900000000000000000000000000604482015290519081900360640190fd5b6000612c218284612f92565b9050600160a060020a0380821690851614612c86576040805160e560020a62461bcd02815260206004820152601d60248201527f7369676e617475726520766572696669636174696f6e206661696c6564000000604482015290519081900360640190fd5b50505050565b600160a060020a0382166000908152602081905260409020548111612cfb576040805160e560020a62461bcd02815260206004820152600f60248201527f6e6f6e636520746f6f20736d616c6c0000000000000000000000000000000000604482015290519081900360640190fd5b426201518001612d0e82620f4240613081565b1115612d64576040805160e560020a62461bcd02815260206004820152600d60248201527f6e6f6e636520746f6f2062696700000000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a03909116600090815260208190526040902055565b6040517f19000000000000000000000000000000000000000000000000000000000000006020808301828152600060218501819052306c010000000000000000000000008102602287015287519195869594869492938a938a939092603690910191908501908083835b60208310612e095780518252601f199092019160209182019101612dea565b51815160209384036101000a6000190180199092169116179052920193845250604080518085038152848301808352815191840191909120606086018352601c8083527f19457468657265756d205369676e6564204d6573736167653a0a3332000000009684019687529251909a50600099509097508996509091019350839291508083835b60208310612eae5780518252601f199092019160209182019101612e8f565b51815160209384036101000a600019018019909216911617905292019384525060408051808503815293820190528251920191909120979650505050505050565b60006044825110151515612f4d576040805160e560020a62461bcd02815260206004820152601560248201527f64617461206c656e67746820746f6f2073686f72740000000000000000000000604482015290519081900360640190fd5b5060440151600160a060020a031690565b6000808284811515612f6c57fe5b0490508284811515612f7a57fe5b061515612f88579050610964565b6001019050610964565b8051600090604114612fa657506000610964565b60208201516040830151606084015160001a7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115612fec5760009350505050610964565b8060ff16601b1415801561300457508060ff16601c14155b156130155760009350505050610964565b6040805160008152602080820180845289905260ff8416828401526060820186905260808201859052915160019260a0808401939192601f1981019281900390910190855afa15801561306c573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b600080821161308f57600080fd5b6000828481151561309c57fe5b0494935050505056fe6f6e6c7920696e7465726e616c2063616c6c20697320616c6c6f7765640000006964656e746963616c2061646d696e206b657920616c726561647920657869737473696e76616c6964206f72206475706c6963617465206f72206e6f20766163616e6379a165627a7a72305820013df0421090a3dc4c98ea6f9f47bfa555d1508984a7f8aa761a3ec4b47f8b910029000000000000000000000000adc92d1fd878580579716d944ef3460e241604b7

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100c6576000357c0100000000000000000000000000000000000000000000000000000000900480635a6c41581161008e5780635a6c41581461020f5780635ac6c39414610235578063695216501461034f5780637548cb9414610375578063c281fb72146103fe578063cc5b287314610422576100c6565b806302064abc146100cb5780630978ec671461014d578063370eba7414610185578063426b7407146101b3578063441d2e50146101e1575b600080fd5b61014b600480360360408110156100e157600080fd5b600160a060020a03823516919081019060408101602082013564010000000081111561010c57600080fd5b82018360208201111561011e57600080fd5b8035906020019184602083028401116401000000008311171561014057600080fd5b5090925090506104ab565b005b6101736004803603602081101561016357600080fd5b5035600160a060020a03166107aa565b60408051918252519081900360200190f35b6101736004803603604081101561019b57600080fd5b50600160a060020a03813581169160200135166107c9565b61014b600480360360408110156101c957600080fd5b50600160a060020a038135811691602001351661096a565b61014b600480360360408110156101f757600080fd5b50600160a060020a0381358116916020013516610b0a565b61014b6004803603602081101561022557600080fd5b5035600160a060020a0316610f70565b61014b600480360360a081101561024b57600080fd5b81019060208101813564010000000081111561026657600080fd5b82018360208201111561027857600080fd5b8035906020019184600183028401116401000000008311171561029a57600080fd5b9193909290916020810190356401000000008111156102b857600080fd5b8201836020820111156102ca57600080fd5b803590602001918460018302840111640100000000831117156102ec57600080fd5b91939092909160208101903564010000000081111561030a57600080fd5b82018360208201111561031c57600080fd5b8035906020019184600183028401116401000000008311171561033e57600080fd5b919350915080359060200135611009565b61014b6004803603602081101561036557600080fd5b5035600160a060020a0316611321565b61014b6004803603606081101561038b57600080fd5b600160a060020a0382358116926020810135909116918101906060810160408201356401000000008111156103bf57600080fd5b8201836020820111156103d157600080fd5b803590602001918460018302840111640100000000831117156103f357600080fd5b509092509050611541565b6104066116fd565b60408051600160a060020a039092168252519081900360200190f35b61014b6004803603606081101561043857600080fd5b600160a060020a03823581169260208101359091169181019060608101604082013564010000000081111561046c57600080fd5b82018360208201111561047e57600080fd5b803590602001918460018302840111640100000000831117156104a057600080fd5b50909250905061170c565b3330146104f0576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206130a6833981519152604482015290519081900360640190fd5b600154604080517fd01e547f000000000000000000000000000000000000000000000000000000008152600160a060020a0386811660048301529151600093929092169163d01e547f91602480820192602092909190829003018186803b15801561055a57600080fd5b505afa15801561056e573d6000803e3d6000fd5b505050506040513d602081101561058457600080fd5b505190508181146105df576040805160e560020a62461bcd02815260206004820152601660248201527f696e76616c6964206e756d626572206f66206b65797300000000000000000000604482015290519081900360640190fd5b60005b818110156107a35760008484838181106105f857fe5b90506020020135600160a060020a031690506000600160a060020a031681600160a060020a031614151515610677576040805160e560020a62461bcd02815260206004820152600e60248201527f30783020697320696e76616c6964000000000000000000000000000000000000604482015290519081900360640190fd5b60018054604080517f52d43b46000000000000000000000000000000000000000000000000000000008152600160a060020a038a8116600483015293860160248201528484166044820152905192909116916352d43b469160648082019260009290919082900301818387803b1580156106f057600080fd5b505af1158015610704573d6000803e3d6000fd5b505060018054604080517fe4d1ba07000000000000000000000000000000000000000000000000000000008152600160a060020a038c811660048301529388016024820152600060448201819052915193909216945063e4d1ba079350606480830193919282900301818387803b15801561077e57600080fd5b505af1158015610792573d6000803e3d6000fd5b5050600190930192506105e2915050565b5050505050565b600160a060020a0381166000908152602081905260409020545b919050565b60006006600160a060020a03831615156107e4579050610964565b60005b60058111610960576001546040805160e160020a6365865bb5028152600160a060020a038881166004830152602482018590529151600093929092169163cb0cb76a91604480820192602092909190829003018186803b15801561084a57600080fd5b505afa15801561085e573d6000803e3d6000fd5b505050506040513d602081101561087457600080fd5b50516001546040805160e160020a63473965d7028152600160a060020a038a811660048301526024820187905291519394506000939190921691638e72cbae916044808301926020929190829003018186803b1580156108d357600080fd5b505afa1580156108e7573d6000803e3d6000fd5b505050506040513d60208110156108fd57600080fd5b50519050600160a060020a0382811690871614801561091b57504281115b1561092e57506006935061096492505050565b600584111561095657600160a060020a038216158061094d5750428111155b15610956578293505b50506001016107e7565b5090505b92915050565b3330146109af576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206130a6833981519152604482015290519081900360640190fd5b600160a060020a038281169082161415610a13576040805160e560020a62461bcd02815260206004820152601b60248201527f63616e6e6f74206265206261636b7570206f66206f6e6573656c660000000000604482015290519081900360640190fd5b6000610a1f83836107c9565b90506005811115610a645760405160e560020a62461bcd0281526004018080602001828103825260228152602001806130e86022913960400191505060405180910390fd5b600154604080517fe5632dee000000000000000000000000000000000000000000000000000000008152600160a060020a03868116600483015260248201859052858116604483015242621baf8001606483015260001960848301529151919092169163e5632dee9160a480830192600092919082900301818387803b158015610aed57600080fd5b505af1158015610b01573d6000803e3d6000fd5b50505050505050565b333014610b4f576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206130a6833981519152604482015290519081900360640190fd5b600154604080517f8d431198000000000000000000000000000000000000000000000000000000008152600160a060020a038581166004830152600060248301819052925192931691638d43119891604480820192602092909190829003018186803b158015610bbe57600080fd5b505afa158015610bd2573d6000803e3d6000fd5b505050506040513d6020811015610be857600080fd5b50519050600160a060020a038082169083161415610c3a5760405160e560020a62461bcd0281526004018080602001828103825260228152602001806130c66022913960400191505060405180910390fd5b600160a060020a0382161515610c9a576040805160e560020a62461bcd02815260206004820152600e60248201527f30783020697320696e76616c6964000000000000000000000000000000000000604482015290519081900360640190fd5b600154604080517f52d43b46000000000000000000000000000000000000000000000000000000008152600160a060020a038681166004830152600060248301819052868216604484015292519316926352d43b469260648084019391929182900301818387803b158015610d0e57600080fd5b505af1158015610d22573d6000803e3d6000fd5b50506001546040805160e160020a634796da83028152600160a060020a0388811660048301527fd595d9350000000000000000000000000000000000000000000000000000000060248301529151919092169350638f2db5069250604480830192600092919082900301818387803b158015610d9d57600080fd5b505af1158015610db1573d6000803e3d6000fd5b50506001546040805160e160020a634796da83028152600160a060020a0388811660048301527ffdd54ba10000000000000000000000000000000000000000000000000000000060248301529151919092169350638f2db5069250604480830192600092919082900301818387803b158015610e2c57600080fd5b505af1158015610e40573d6000803e3d6000fd5b50506001546040805160e160020a634796da83028152600160a060020a0388811660048301527fd3b9d4d60000000000000000000000000000000000000000000000000000000060248301529151919092169350638f2db5069250604480830192600092919082900301818387803b158015610ebb57600080fd5b505af1158015610ecf573d6000803e3d6000fd5b50506001546040805160e160020a634796da83028152600160a060020a0388811660048301527f45c8b1a60000000000000000000000000000000000000000000000000000000060248301529151919092169350638f2db5069250604480830192600092919082900301818387803b158015610f4a57600080fd5b505af1158015610f5e573d6000803e3d6000fd5b50505050610f6b83611950565b505050565b8033600160a060020a03821614610fd1576040805160e560020a62461bcd02815260206004820152601660248201527f63616c6c6572206d757374206265206163636f756e7400000000000000000000604482015290519081900360640190fd5b604051600160a060020a038316907f5225703c8dffe03175a93829d26cf60c83e6af9fd1828c13102f1ac30a8c877c90600090a25050565b87878080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250925061104a9150839050611c94565b9050600160e060020a031981167f426b74070000000000000000000000000000000000000000000000000000000014806110ad5750600160e060020a031981167f7548cb9400000000000000000000000000000000000000000000000000000000145b1515611103576040805160e560020a62461bcd02815260206004820152600b60248201527f77726f6e6720656e747279000000000000000000000000000000000000000000604482015290519081900360640190fd5b6111788a8a8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8e018190048102820181019092528c815292508c91508b9081908401838280828437600092019190915250899250611cfa915050565b6111ed8a8a8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8c018190048102820181019092528a815292508a9150899081908401838280828437600092019190915250889250611e62915050565b600030600160a060020a03168b8b604051808383808284376040519201945060009350909150508083038183865af19150503d806000811461124b576040519150601f19603f3d011682016040523d82523d6000602084013e611250565b606091505b505090508015156112ab576040805160e560020a62461bcd02815260206004820152601860248201527f656e746572576974684475616c53696773206661696c65640000000000000000604482015290519081900360640190fd5b847f9bb189d41c9c6ff433f6726f149aed82fe9ae766771663b5eea49ffb71037d178c8c8760405180806020018381526020018281038252858582818152602001925080828437600083820152604051601f909101601f1916909201829003965090945050505050a25050505050505050505050565b333014611366576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206130a6833981519152604482015290519081900360640190fd5b60005b600154604080517fd01e547f000000000000000000000000000000000000000000000000000000008152600160a060020a0385811660048301529151919092169163d01e547f916024808301926020929190829003018186803b1580156113cf57600080fd5b505afa1580156113e3573d6000803e3d6000fd5b505050506040513d60208110156113f957600080fd5b505181101561153d5760018054604080517f43090116000000000000000000000000000000000000000000000000000000008152600160a060020a038681166004830152938501602482015290519290911691634309011691604480820192602092909190829003018186803b15801561147257600080fd5b505afa158015611486573d6000803e3d6000fd5b505050506040513d602081101561149c57600080fd5b5051600114156115355760018054604080517fe4d1ba07000000000000000000000000000000000000000000000000000000008152600160a060020a03868116600483015293850160248201526000604482018190529151939092169263e4d1ba0792606480820193929182900301818387803b15801561151c57600080fd5b505af1158015611530573d6000803e3d6000fd5b505050505b600101611369565b5050565b333014611586576040805160e560020a62461bcd02815260206004820152601d60248201526000805160206130a6833981519152604482015290519081900360640190fd5b60006115c783838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611c9492505050565b90506115d281611f24565b1515611628576040805160e560020a62461bcd02815260206004820152601060248201527f696e76616c69642070726f706f73616c00000000000000000000000000000000604482015290519081900360640190fd5b6116328585611fd0565b6000838360405180838380828437604080519190930181900381206001547f6bc77abe000000000000000000000000000000000000000000000000000000008352600160a060020a038e8116600485018190526024850152600160e060020a03198b166044850152606484018390528d811660848501529451919850939093169550636bc77abe945060a4808201945060009392509082900301818387803b1580156116dd57600080fd5b505af11580156116f1573d6000803e3d6000fd5b50505050505050505050565b600154600160a060020a031681565b600061174d83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611c9492505050565b9050600083836040518083838082843780830192505050925050506040518091039020905061177e868684846122e1565b600030600160a060020a03168585604051808383808284376040519201945060009350909150508083038183865af19150503d80600081146117dc576040519150601f19603f3d011682016040523d82523d6000602084013e6117e1565b606091505b5050905080151561183c576040805160e560020a62461bcd02815260206004820152601660248201527f6578656375746550726f706f73616c206661696c656400000000000000000000604482015290519081900360640190fd5b600154604080517f21c32c9c000000000000000000000000000000000000000000000000000000008152600160a060020a038a811660048301528981166024830152600160e060020a031987166044830152915191909216916321c32c9c91606480830192600092919082900301818387803b1580156118bb57600080fd5b505af11580156118cf573d6000803e3d6000fd5b5050505085600160a060020a031687600160a060020a03167f252a9bd6833c7a9f17515f224bb60795a2af85f62afce5d54e5832754fa59670878760405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a350505050505050565b600154604080517f21c32c9c000000000000000000000000000000000000000000000000000000008152600160a060020a038481166004830181905260248301527f441d2e50000000000000000000000000000000000000000000000000000000006044830152915191909216916321c32c9c91606480830192600092919082900301818387803b1580156119e457600080fd5b505af11580156119f8573d6000803e3d6000fd5b506000925050505b6005811161153d576001546040805160e160020a6365865bb5028152600160a060020a038581166004830152602482018590529151600093929092169163cb0cb76a91604480820192602092909190829003018186803b158015611a6357600080fd5b505afa158015611a77573d6000803e3d6000fd5b505050506040513d6020811015611a8d57600080fd5b5051600154604080517fdb80821d000000000000000000000000000000000000000000000000000000008152600160a060020a038781166004830152602482018790529151939450600093919092169163db80821d916044808301926020929190829003018186803b158015611b0257600080fd5b505afa158015611b16573d6000803e3d6000fd5b505050506040513d6020811015611b2c57600080fd5b50516001546040805160e160020a63473965d7028152600160a060020a0388811660048301526024820188905291519394506000939190921691638e72cbae916044808301926020929190829003018186803b158015611b8b57600080fd5b505afa158015611b9f573d6000803e3d6000fd5b505050506040513d6020811015611bb557600080fd5b50519050600160a060020a03831615801590611bd65750611bd68282612860565b15611c8957600154604080517f21c32c9c000000000000000000000000000000000000000000000000000000008152600160a060020a03888116600483015286811660248301527ffdd54ba1000000000000000000000000000000000000000000000000000000006044830152915191909216916321c32c9c91606480830192600092919082900301818387803b158015611c7057600080fd5b505af1158015611c84573d6000803e3d6000fd5b505050505b505050600101611a00565b60006004825110151515611cf2576040805160e560020a62461bcd02815260206004820152600c60248201527f696e76616c696420646174610000000000000000000000000000000000000000604482015290519081900360640190fd5b506020015190565b6000611d0584612878565b90506000611d1382826128e7565b600154604080517f8d431198000000000000000000000000000000000000000000000000000000008152600160a060020a0385811660048301526024820185905291516000939290921691638d43119891604480820192602092909190829003018186803b158015611d8457600080fd5b505afa158015611d98573d6000803e3d6000fd5b505050506040513d6020811015611dae57600080fd5b505190507f7548cb9400000000000000000000000000000000000000000000000000000000611ddc87611c94565b600160e060020a031916148015611e2457507f441d2e5000000000000000000000000000000000000000000000000000000000611e18876129e1565b600160e060020a031916145b15611e4157611e3c8186611e3789612a47565b612bb5565b611e5a565b611e4b8185612c8c565b611e5a8186611e378988612d80565b505050505050565b6000611e6d84612eef565b90506004611e7b82826128e7565b600154604080517f8d431198000000000000000000000000000000000000000000000000000000008152600160a060020a0385811660048301526024820185905291516000939290921691638d43119891604480820192602092909190829003018186803b158015611eec57600080fd5b505afa158015611f00573d6000803e3d6000fd5b505050506040513d6020811015611f1657600080fd5b50519050611e4b8185612c8c565b6000600160e060020a031982167f441d2e50000000000000000000000000000000000000000000000000000000001480611f875750600160e060020a031982167f02064abc00000000000000000000000000000000000000000000000000000000145b80611fbb5750600160e060020a031982167f6952165000000000000000000000000000000000000000000000000000000000145b15611fc8575060016107c4565b506000919050565b600160a060020a0381161515612030576040805160e560020a62461bcd02815260206004820152601460248201527f6261636b75702063616e6e6f7420626520307830000000000000000000000000604482015290519081900360640190fd5b600160a060020a0382161515612090576040805160e560020a62461bcd02815260206004820152601460248201527f636c69656e742063616e6e6f7420626520307830000000000000000000000000604482015290519081900360640190fd5b6000805b60058111612289576001546040805160e160020a6365865bb5028152600160a060020a038781166004830152602482018590529151600093929092169163cb0cb76a91604480820192602092909190829003018186803b1580156120f757600080fd5b505afa15801561210b573d6000803e3d6000fd5b505050506040513d602081101561212157600080fd5b5051600154604080517fdb80821d000000000000000000000000000000000000000000000000000000008152600160a060020a038981166004830152602482018790529151939450600093919092169163db80821d916044808301926020929190829003018186803b15801561219657600080fd5b505afa1580156121aa573d6000803e3d6000fd5b505050506040513d60208110156121c057600080fd5b50516001546040805160e160020a63473965d7028152600160a060020a038a811660048301526024820188905291519394506000939190921691638e72cbae916044808301926020929190829003018186803b15801561221f57600080fd5b505afa158015612233573d6000803e3d6000fd5b505050506040513d602081101561224957600080fd5b50519050600160a060020a0386811690841614801561226d575061226d8282612860565b1561227e5760019450505050612289565b505050600101612094565b50801515610f6b576040805160e560020a62461bcd02815260206004820152601d60248201527f6261636b757020646f6573206e6f7420657869737420696e206c697374000000604482015290519081900360640190fd5b600154604080517f60791b88000000000000000000000000000000000000000000000000000000008152600160a060020a0387811660048301528681166024830152600160e060020a031986166044830152915160009392909216916360791b8891606480820192602092909190829003018186803b15801561236357600080fd5b505afa158015612377573d6000803e3d6000fd5b505050506040513d602081101561238d57600080fd5b505190508181146123e8576040805160e560020a62461bcd02815260206004820152601560248201527f70726f706f73616c206861736820756e6d617463680000000000000000000000604482015290519081900360640190fd5b600154604080517f70c460f8000000000000000000000000000000000000000000000000000000008152600160a060020a0388811660048301528781166024830152600160e060020a031987166044830152915160009384936060939116916370c460f8916064808201928792909190829003018186803b15801561246c57600080fd5b505afa158015612480573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156124a957600080fd5b8101908080516401000000008111156124c157600080fd5b820160208101848111156124d457600080fd5b81518560208202830111640100000000821117156124f157600080fd5b505080519094506000109250612554915050576040805160e560020a62461bcd02815260206004820152600b60248201527f6e6f20617070726f76616c000000000000000000000000000000000000000000604482015290519081900360640190fd5b60005b60058111612792576001546040805160e160020a6365865bb5028152600160a060020a038c81166004830152602482018590529151600093929092169163cb0cb76a91604480820192602092909190829003018186803b1580156125ba57600080fd5b505afa1580156125ce573d6000803e3d6000fd5b505050506040513d60208110156125e457600080fd5b5051600154604080517fdb80821d000000000000000000000000000000000000000000000000000000008152600160a060020a038e81166004830152602482018790529151939450600093919092169163db80821d916044808301926020929190829003018186803b15801561265957600080fd5b505afa15801561266d573d6000803e3d6000fd5b505050506040513d602081101561268357600080fd5b50516001546040805160e160020a63473965d7028152600160a060020a038f811660048301526024820188905291519394506000939190921691638e72cbae916044808301926020929190829003018186803b1580156126e257600080fd5b505afa1580156126f6573d6000803e3d6000fd5b505050506040513d602081101561270c57600080fd5b50519050600160a060020a0383161580159061272d575061272d8282612860565b15612787576001969096019560005b855181101561278557858181518110151561275357fe5b90602001906020020151600160a060020a031684600160a060020a0316141561277d576001870196505b60010161273c565b505b505050600101612557565b50600083116127eb576040805160e560020a62461bcd02815260206004820152601160248201527f6e6f206261636b757020696e206c697374000000000000000000000000000000604482015290519081900360640190fd5b60006127fb84600602600a612f5e565b905080831015612855576040805160e560020a62461bcd02815260206004820152601f60248201527f6d75737420686176652036302520617070726f76616c206174206c6561737400604482015290519081900360640190fd5b505050505050505050565b600042831115801561287157504282115b9392505050565b600060248251101515156128d6576040805160e560020a62461bcd02815260206004820152600d60248201527f696e76616c696420627974657300000000000000000000000000000000000000604482015290519081900360640190fd5b5060240151600160a060020a031690565b600081111561153d57600154604080517f43090116000000000000000000000000000000000000000000000000000000008152600160a060020a03858116600483015260248201859052915191909216916343090116916044808301926020929190829003018186803b15801561295d57600080fd5b505afa158015612971573d6000803e3d6000fd5b505050506040513d602081101561298757600080fd5b50516001141561153d576040805160e560020a62461bcd02815260206004820152600a60248201527f66726f7a656e206b657900000000000000000000000000000000000000000000604482015290519081900360640190fd5b600060a4825110151515612a3f576040805160e560020a62461bcd02815260206004820152601560248201527f64617461206c656e67746820746f6f2073686f72740000000000000000000000604482015290519081900360640190fd5b5060a4015190565b6040517f19000000000000000000000000000000000000000000000000000000000000006020808301828152600060218501819052306c01000000000000000000000000810260228701528651919586959486949293899392603601918401908083835b60208310612aca5780518252601f199092019160209182019101612aab565b6001836020036101000a03801982511681845116808217855250505050505090500194505050505060405160208183030381529060405280519060200120905060006040805190810160405280601c81526020017f19457468657265756d205369676e6564204d6573736167653a0a333200000000815250826040516020018083805190602001908083835b60208310612b755780518252601f199092019160209182019101612b56565b51815160209384036101000a6000190180199092169116179052920193845250604080518085038152938201905282519201919091209695505050505050565b600160a060020a0383161515612c15576040805160e560020a62461bcd02815260206004820152601360248201527f696e76616c6964207369676e696e67206b657900000000000000000000000000604482015290519081900360640190fd5b6000612c218284612f92565b9050600160a060020a0380821690851614612c86576040805160e560020a62461bcd02815260206004820152601d60248201527f7369676e617475726520766572696669636174696f6e206661696c6564000000604482015290519081900360640190fd5b50505050565b600160a060020a0382166000908152602081905260409020548111612cfb576040805160e560020a62461bcd02815260206004820152600f60248201527f6e6f6e636520746f6f20736d616c6c0000000000000000000000000000000000604482015290519081900360640190fd5b426201518001612d0e82620f4240613081565b1115612d64576040805160e560020a62461bcd02815260206004820152600d60248201527f6e6f6e636520746f6f2062696700000000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a03909116600090815260208190526040902055565b6040517f19000000000000000000000000000000000000000000000000000000000000006020808301828152600060218501819052306c010000000000000000000000008102602287015287519195869594869492938a938a939092603690910191908501908083835b60208310612e095780518252601f199092019160209182019101612dea565b51815160209384036101000a6000190180199092169116179052920193845250604080518085038152848301808352815191840191909120606086018352601c8083527f19457468657265756d205369676e6564204d6573736167653a0a3332000000009684019687529251909a50600099509097508996509091019350839291508083835b60208310612eae5780518252601f199092019160209182019101612e8f565b51815160209384036101000a600019018019909216911617905292019384525060408051808503815293820190528251920191909120979650505050505050565b60006044825110151515612f4d576040805160e560020a62461bcd02815260206004820152601560248201527f64617461206c656e67746820746f6f2073686f72740000000000000000000000604482015290519081900360640190fd5b5060440151600160a060020a031690565b6000808284811515612f6c57fe5b0490508284811515612f7a57fe5b061515612f88579050610964565b6001019050610964565b8051600090604114612fa657506000610964565b60208201516040830151606084015160001a7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115612fec5760009350505050610964565b8060ff16601b1415801561300457508060ff16601c14155b156130155760009350505050610964565b6040805160008152602080820180845289905260ff8416828401526060820186905260808201859052915160019260a0808401939192601f1981019281900390910190855afa15801561306c573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b600080821161308f57600080fd5b6000828481151561309c57fe5b0494935050505056fe6f6e6c7920696e7465726e616c2063616c6c20697320616c6c6f7765640000006964656e746963616c2061646d696e206b657920616c726561647920657869737473696e76616c6964206f72206475706c6963617465206f72206e6f20766163616e6379a165627a7a72305820013df0421090a3dc4c98ea6f9f47bfa555d1508984a7f8aa761a3ec4b47f8b910029

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

000000000000000000000000adc92d1fd878580579716d944ef3460e241604b7

-----Decoded View---------------
Arg [0] : _accountStorage (address): 0xADc92d1fD878580579716d944eF3460E241604b7

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000adc92d1fd878580579716d944ef3460e241604b7


Deployed Bytecode Sourcemap

33210:9424:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33210:9424:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37390:485;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;37390:485:0;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;37390:485:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;37390:485:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;-1:-1;37390:485:0;;-1:-1:-1;37390:485:0;-1:-1:-1;37390:485:0;:::i;:::-;;21443:106;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21443:106:0;-1:-1:-1;;;;;21443:106:0;;:::i;:::-;;;;;;;;;;;;;;;;38887:766;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;38887:766:0;;;;;;;;;;:::i;38387:396::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;38387:396:0;;;;;;;;;;:::i;36568:704::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;36568:704:0;;;;;;;;;;:::i;34401:146::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34401:146:0;-1:-1:-1;;;;;34401:146:0;;:::i;34710:528::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;34710:528:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;34710:528:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;34710:528: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;34710:528:0;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;34710:528:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;34710:528: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;34710:528:0;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;34710:528:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;34710:528: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;34710:528:0;;-1:-1:-1;34710:528:0;-1:-1:-1;34710:528:0;;;;;;;:::i;38002:292::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38002:292:0;-1:-1:-1;;;;;38002:292:0;;:::i;39836:431::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;39836:431:0;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;39836:431:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;39836:431: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;39836:431:0;;-1:-1:-1;39836:431:0;-1:-1:-1;39836:431:0;:::i;20613:36::-;;;:::i;:::-;;;;-1:-1:-1;;;;;20613:36:0;;;;;;;;;;;;;;28946:693;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;28946:693:0;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;28946:693:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;28946:693: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;28946:693:0;;-1:-1:-1;28946:693:0;-1:-1:-1;28946:693:0;:::i;37390:485::-;20708:10;20730:4;20708:27;20699:70;;;;;-1:-1:-1;;;;;20699:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20699:70:0;;;;;;;;;;;;;;;37537:14;;:45;;;;;;-1:-1:-1;;;;;37537:45:0;;;;;;;;;37518:16;;37537:14;;;;;:35;;:45;;;;;;;;;;;;;;;:14;:45;;;5:2:-1;;;;30:1;27;20:12;5:2;37537:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37537:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37537:45:0;;-1:-1:-1;37595:23:0;;;37587:58;;;;;-1:-1:-1;;;;;37587:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;37655:9;37650:221;37674:8;37670:1;:12;37650:221;;;37695:10;37708:4;;37713:1;37708:7;;;;;;;;;;;;;-1:-1:-1;;;;;37708:7:0;37695:20;;37743:1;-1:-1:-1;;;;;37729:16:0;:2;-1:-1:-1;;;;;37729:16:0;;;37721:43;;;;;;;-1:-1:-1;;;;;37721:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;37770:14;;;:44;;;;;;-1:-1:-1;;;;;37770:44:0;;;;;;;37806:3;;;37770:44;;;;;;;;;;;;;:14;;;;;:25;;:44;;;;;:14;;:44;;;;;;;;:14;;:44;;;5:2:-1;;;;30:1;27;20:12;5:2;37770:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;37820:14:0;;;:45;;;;;;-1:-1:-1;;;;;37820:45:0;;;;;;;37858:3;;;37820:45;;;;:14;:45;;;;;;;;:14;;;;;-1:-1:-1;37820:27:0;;-1:-1:-1;37820:45:0;;;;;:14;;:45;;;;;:14;;:45;;;5:2:-1;;;;30:1;27;20:12;5:2;37820:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;37684:3:0;;;;;-1:-1:-1;37650:221:0;;-1:-1:-1;;37650:221:0;;;20780:1;37390:485;;;:::o;21443:106::-;-1:-1:-1;;;;;21527:14:0;;21500:7;21527:14;;;;;;;;;;;21443:106;;;;:::o;38887:766::-;38969:4;38993:28;-1:-1:-1;;;;;39030:21:0;;;39026:51;;;39066:5;-1:-1:-1;39059:12:0;;39026:51;39086:9;39081:551;27645:1;39101:29;;39081:551;;39169:14;;:44;;;-1:-1:-1;;;;;39169:44:0;;-1:-1:-1;;;;;39169:44:0;;;;;;;;;;;;;;;39152:14;;39169;;;;;:31;;:44;;;;;;;;;;;;;;;:14;:44;;;5:2:-1;;;;30:1;27;20:12;5:2;39169:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;39169:44:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;39169:44:0;39249:14;;:47;;;-1:-1:-1;;;;;39249:47:0;;-1:-1:-1;;;;;39249:47:0;;;;;;;;;;;;;;;39169:44;;-1:-1:-1;39228:18:0;;39249:14;;;;;:34;;:47;;;;;39169:44;;39249:47;;;;;;;:14;:47;;;5:2:-1;;;;30:1;27;20:12;5:2;39249:47:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;39249:47:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;39249:47:0;;-1:-1:-1;;;;;;39353:17:0;;;;;;;39352:41;;;;;39389:3;39376:10;:16;39352:41;39348:96;;;-1:-1:-1;39409:28:0;;-1:-1:-1;39402:35:0;;-1:-1:-1;;;39402:35:0;39348:96;27645:1;39453:5;:32;39449:178;;;-1:-1:-1;;;;;39538:20:0;;;;39537:45;;;39578:3;39564:10;:17;;39537:45;39533:88;;;39612:1;39604:9;;39533:88;-1:-1:-1;;39132:3:0;;39081:551;;;-1:-1:-1;39643:5:0;-1:-1:-1;38887:766:0;;;;;:::o;38387:396::-;20708:10;20730:4;20708:27;20699:70;;;;;-1:-1:-1;;;;;20699:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20699:70:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38490:19:0;;;;;;;;38482:59;;;;;-1:-1:-1;;;;;38482:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;38546:13;38562:36;38580:8;38590:7;38562:17;:36::i;:::-;38546:52;-1:-1:-1;27645:1:0;38611:33;;;38603:80;;;;-1:-1:-1;;;;;38603:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38688:14;;:90;;;;;;-1:-1:-1;;;;;38688:90:0;;;;;;;;;;;;;;;;;;;;38739:3;27501:7;38739:25;38688:90;;;;-1:-1:-1;;38688:90:0;;;;;;:14;;;;;:24;;:90;;;;;:14;;:90;;;;;;;:14;;:90;;;5:2:-1;;;;30:1;27;20:12;5:2;38688:90:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;38688:90:0;;;;20780:1;38387:396;;:::o;36568:704::-;20708:10;20730:4;20708:27;20699:70;;;;;-1:-1:-1;;;;;20699:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20699:70:0;;;;;;;;;;;;;;;36692:14;;:38;;;;;;-1:-1:-1;;;;;36692:38:0;;;;;;;36679:10;36692:38;;;;;;;;36679:10;;36692:14;;:25;;:38;;;;;;;;;;;;;;;:14;:38;;;5:2:-1;;;;30:1;27;20:12;5:2;36692:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36692:38:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36692:38:0;;-1:-1:-1;;;;;;36743:12:0;;;;;;;;36735:59;;;;-1:-1:-1;;;;;36735:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36807:20:0;;;;36799:47;;;;;-1:-1:-1;;;;;36799:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;36851:14;;:46;;;;;;-1:-1:-1;;;;;36851:46:0;;;;;;;:14;:46;;;;;;;;;;;;;;;:14;;;:25;;:46;;;;;:14;;:46;;;;;;:14;;:46;;;5:2:-1;;;;30:1;27;20:12;5:2;36851:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;36958:14:0;;:57;;;-1:-1:-1;;;;;36958:57:0;;-1:-1:-1;;;;;36958:57:0;;;;;;;36998:16;36958:57;;;;;;:14;;;;;-1:-1:-1;36958:29:0;;-1:-1:-1;36958:57:0;;;;;:14;;:57;;;;;;;:14;;:57;;;5:2:-1;;;;30:1;27;20:12;5:2;36958:57:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;37020:14:0;;:67;;;-1:-1:-1;;;;;37020:67:0;;-1:-1:-1;;;;;37020:67:0;;;;;;;37060:26;37020:67;;;;;;:14;;;;;-1:-1:-1;37020:29:0;;-1:-1:-1;37020:67:0;;;;;:14;;:67;;;;;;;:14;;:67;;;5:2:-1;;;;30:1;27;20:12;5:2;37020:67:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;37092:14:0;;:66;;;-1:-1:-1;;;;;37092:66:0;;-1:-1:-1;;;;;37092:66:0;;;;;;;37132:25;37092:66;;;;;;:14;;;;;-1:-1:-1;37092:29:0;;-1:-1:-1;37092:66:0;;;;;:14;;:66;;;;;;;:14;;:66;;;5:2:-1;;;;30:1;27;20:12;5:2;37092:66:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;37163:14:0;;:49;;;-1:-1:-1;;;;;37163:49:0;;-1:-1:-1;;;;;37163:49:0;;;;;;;37203:8;37163:49;;;;;;:14;;;;;-1:-1:-1;37163:29:0;;-1:-1:-1;37163:49:0;;;;;:14;;:49;;;;;;;:14;;:49;;;5:2:-1;;;;30:1;27;20:12;5:2;37163:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37163:49:0;;;;37217:50;37258:8;37217:40;:50::i;:::-;20780:1;36568:704;;:::o;34401:146::-;34471:8;20865:10;-1:-1:-1;;;;;20865:31:0;;;20857:66;;;;;-1:-1:-1;;;;;20857:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;34496:43;;-1:-1:-1;;;;;34496:43:0;;;;;;;;34401:146;;:::o;34710:528::-;34888:5;;33962:201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;-1:-1;99:1;-1:-1;34038:18:0;;-1:-1:-1;34050:5:0;;-1:-1:-1;34038:11:0;:18::i;:::-;34020:36;-1:-1:-1;;;;;;;34071:22:0;;34083:10;34071:22;;34070:66;;-1:-1:-1;;;;;;;34108:27:0;;34120:15;34108:27;34070:66;34061:91;;;;;;;-1:-1:-1;;;;;34061:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;34908:45;34921:5;;34908:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;;34908:45:0;;;;137:4:-1;34908:45:0;;;;;;;;;;;;;;;;;;-1:-1:-1;34928:10:0;;-1:-1:-1;34928:10:0;;;;34908:45;;34928:10;;;;34908:45;1:33:-1;99:1;81:16;;74:27;;;;-1:-1;34940:12:0;;-1:-1:-1;34908:12:0;;-1:-1:-1;;34908:45:0:i;:::-;34964;34977:5;;34964:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;;34964:45:0;;;;137:4:-1;34964:45:0;;;;;;;;;;;;;;;;;;-1:-1:-1;34984:10:0;;-1:-1:-1;34984:10:0;;;;34964:45;;34984:10;;;;34964:45;1:33:-1;99:1;81:16;;74:27;;;;-1:-1;34996:12:0;;-1:-1:-1;34964:12:0;;-1:-1:-1;;34964:45:0:i;:::-;35077:12;35102:4;-1:-1:-1;;;;;35094:18:0;35113:5;;35094:25;;;;;30:3:-1;22:6;14;1:33;35094:25:0;;45:16:-1;;;-1:-1;35094:25:0;;-1:-1:-1;35094:25:0;;-1:-1:-1;;35094: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;;35076:43:0;;;35132:7;35124:44;;;;;;;-1:-1:-1;;;;;35124:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;35206:12;35178:55;35199:5;;35220:12;35178:55;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;35178:55:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;35178:55:0;;;;-1:-1:-1;35178:55:0;;-1:-1:-1;;;;;35178:55:0;34157:1;34710:528;;;;;;;;;;:::o;38002:292::-;20708:10;20730:4;20708:27;20699:70;;;;;-1:-1:-1;;;;;20699:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20699:70:0;;;;;;;;;;;;;;;38096:9;38091:199;38115:14;;:45;;;;;;-1:-1:-1;;;;;38115:45:0;;;;;;;;;:14;;;;;:35;;:45;;;;;;;;;;;;;;:14;:45;;;5:2:-1;;;;30:1;27;20:12;5:2;38115:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;38115:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38115:45:0;38111:49;;38091:199;;;38177:14;;;:42;;;;;;-1:-1:-1;;;;;38177:42:0;;;;;;;38215:3;;;38177:42;;;;;;:14;;;;;:27;;:42;;;;;;;;;;;;;;;:14;:42;;;5:2:-1;;;;30:1;27;20:12;5:2;38177:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;38177:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38177:42:0;38223:1;38177:47;38173:112;;;38233:14;;;:45;;;;;;-1:-1:-1;;;;;38233:45:0;;;;;;;38271:3;;;38233:45;;;;:14;:45;;;;;;;;:14;;;;;:27;;:45;;;;;:14;:45;;;;;;:14;;:45;;;5:2:-1;;;;30:1;27;20:12;5:2;38233:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;38233:45:0;;;;38173:112;38162:3;;38091:199;;;;38002:292;:::o;39836:431::-;20708:10;20730:4;20708:27;20699:70;;;;;-1:-1:-1;;;;;20699:70:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20699:70:0;;;;;;;;;;;;;;;39964:23;39990:26;40002:13;;39990:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;39990:11:0;;-1:-1:-1;;;39990:26:0:i;:::-;39964:52;;40029:30;40042:16;40029:12;:30::i;:::-;40021:59;;;;;;;-1:-1:-1;;;;;40021:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;40085:31;40099:7;40108;40085:13;:31::i;:::-;40121:20;40154:13;;40144:24;;;;;30:3:-1;22:6;14;1:33;40144:24:0;;;45:16:-1;;;;40144:24:0;;;;;40173:14;;:89;;;-1:-1:-1;;;;;40173:89:0;;;;;;;;;;;;;-1:-1:-1;;;;;;40173:89:0;;;;;;;;;;;;;;;;;;;;;40144:24;;-1:-1:-1;40173:14:0;;;;;-1:-1:-1;40173:30:0;;-1:-1:-1;40173:89:0;;;;;-1:-1:-1;;;40173:89:0;-1:-1:-1;40173:89:0;;;;;;-1:-1:-1;40173:14:0;:89;;;5:2:-1;;;;30:1;27;20:12;5:2;40173:89:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;40173:89:0;;;;20780:1;;39836:431;;;;:::o;20613:36::-;;;-1:-1:-1;;;;;20613:36:0;;:::o;28946:693::-;29065:23;29091:26;29103:13;;29091:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;29091:11:0;;-1:-1:-1;;;29091:26:0:i;:::-;29065:52;;29128:20;29161:13;;29151:24;;;;;30:3:-1;22:6;14;1:33;57:3;49:6;45:16;35:26;;29151:24:0;;;;;;;;;;;;;29128:47;;29188:65;29202:7;29211:9;29222:16;29240:12;29188:13;:65::i;:::-;29378:12;29403:4;-1:-1:-1;;;;;29395:18:0;29414:13;;29395:33;;;;;30:3:-1;22:6;14;1:33;29395::0;;45:16:-1;;;-1:-1;29395:33:0;;-1:-1:-1;29395:33:0;;-1:-1:-1;;29395:33: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;;29377:51:0;;;29447:7;29439:42;;;;;;;-1:-1:-1;;;;;29439:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29494:14;;:70;;;;;;-1:-1:-1;;;;;29494:70:0;;;;;;;;;;;;;;-1:-1:-1;;;;;;29494:70:0;;;;;;;;:14;;;;;:32;;:70;;;;;:14;;:70;;;;;;;:14;;:70;;;5:2:-1;;;;30:1;27;20:12;5:2;29494:70:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;29494:70:0;;;;29606:9;-1:-1:-1;;;;;29580:51:0;29597:7;-1:-1:-1;;;;;29580:51:0;;29617:13;;29580:51;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;29580:51:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;29580:51:0;;;;-1:-1:-1;29580:51:0;;-1:-1:-1;;;;29580:51:0;28946:693;;;;;;;:::o;32291:877::-;32463:14;;:82;;;;;;-1:-1:-1;;;;;32463:82:0;;;;;;;;;;;;;32514:30;32463:82;;;;;;:14;;;;;:32;;:82;;;;;:14;;:82;;;;;;;:14;;:82;;;5:2:-1;;;;30:1;27;20:12;5:2;32463:82:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;32653:9:0;;-1:-1:-1;;;32648:513:0;27645:1;32668:29;;32648:513;;32736:14;;:43;;;-1:-1:-1;;;;;32736:43:0;;-1:-1:-1;;;;;32736:43:0;;;;;;;;;;;;;;;32719:14;;32736;;;;;:31;;:43;;;;;;;;;;;;;;;:14;:43;;;5:2:-1;;;;30:1;27;20:12;5:2;32736:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;32736:43:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32736:43:0;32818:14;;:49;;;;;;-1:-1:-1;;;;;32818:49:0;;;;;;;;;;;;;;;32736:43;;-1:-1:-1;32794:21:0;;32818:14;;;;;:37;;:49;;;;;32736:43;;32818:49;;;;;;;:14;:49;;;5:2:-1;;;;30:1;27;20:12;5:2;32818:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;32818:49:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32818:49:0;32903:14;;:46;;;-1:-1:-1;;;;;32903:46:0;;-1:-1:-1;;;;;32903:46:0;;;;;;;;;;;;;;;32818:49;;-1:-1:-1;32882:18:0;;32903:14;;;;;:34;;:46;;;;;32818:49;;32903:46;;;;;;;:14;:46;;;5:2:-1;;;;30:1;27;20:12;5:2;32903:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;32903:46:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32903:46:0;;-1:-1:-1;;;;;;32968:20:0;;;;;;:68;;;32992:44;33010:13;33025:10;32992:17;:44::i;:::-;32964:186;;;33057:14;;:77;;;;;;-1:-1:-1;;;;;33057:77:0;;;;;;;;;;;;;;33107:26;33057:77;;;;;;:14;;;;;:32;;:77;;;;;:14;;:77;;;;;;;:14;;:77;;;5:2:-1;;;;30:1;27;20:12;5:2;33057:77:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;33057:77:0;;;;32964:186;-1:-1:-1;;;32699:3:0;;32648:513;;26286:322;26347:9;26390:1;26377:2;:9;:14;;26369:39;;;;;;;-1:-1:-1;;;;;26369:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26586:2:0;26578:11;26572:18;;26493:108::o;35243:750::-;35346:14;35363:23;35380:5;35363:16;:23::i;:::-;35346:40;-1:-1:-1;35423:22:0;35454:38;35346:40;35423:22;35454:14;:38::i;:::-;35518:14;;:49;;;;;;-1:-1:-1;;;;;35518:49:0;;;;;;;;;;;;;;;35497:18;;35518:14;;;;;:25;;:49;;;;;;;;;;;;;;;:14;:49;;;5:2:-1;;;;30:1;27;20:12;5:2;35518:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35518:49:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35518:49:0;;-1:-1:-1;35599:15:0;35577:18;35589:5;35577:11;:18::i;:::-;-1:-1:-1;;;;;;35577:37:0;;35576:113;;;;-1:-1:-1;35658:30:0;35628:26;35648:5;35628:19;:26::i;:::-;-1:-1:-1;;;;;;35628:60:0;;35576:113;35572:417;;;35782:65;35792:10;35804;35816:30;35840:5;35816:23;:30::i;:::-;35782:9;:65::i;:::-;35572:417;;;35865:45;35885:10;35897:12;35865:19;:45::i;:::-;35916:67;35926:10;35938;35950:32;35962:5;35969:12;35950:11;:32::i;35916:67::-;35243:750;;;;;;:::o;36001:458::-;36104:14;36121:29;36144:5;36121:22;:29::i;:::-;36104:46;-1:-1:-1;36213:1:0;36219:38;36104:46;36213:1;36219:14;:38::i;:::-;36283:14;;:49;;;;;;-1:-1:-1;;;;;36283:49:0;;;;;;;;;;;;;;;36262:18;;36283:14;;;;;:25;;:49;;;;;;;;;;;;;;;:14;:49;;;5:2:-1;;;;30:1;27;20:12;5:2;36283:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36283:49:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36283:49:0;;-1:-1:-1;36337:45:0;36283:49;36369:12;36337:19;:45::i;40272:278::-;40334:4;-1:-1:-1;;;;;;40350:43:0;;40363:30;40350:43;;40349:107;;-1:-1:-1;;;;;;;40403:52:0;;40416:39;40403:52;40349:107;:152;;;-1:-1:-1;;;;;;;40465:35:0;;40478:22;40465:35;40349:152;40345:184;;;-1:-1:-1;40519:4:0;40512:11;;40345:184;-1:-1:-1;40540:5:0;40272:278;;;:::o;31268:835::-;-1:-1:-1;;;;;31358:21:0;;;;31350:54;;;;;-1:-1:-1;;;;;31350:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31423:21:0;;;;31415:54;;;;;-1:-1:-1;;;;;31415:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31480:13;;31504:531;27645:1;31524:29;;31504:531;;31592:14;;:43;;;-1:-1:-1;;;;;31592:43:0;;-1:-1:-1;;;;;31592:43:0;;;;;;;;;;;;;;;31575:14;;31592;;;;;:31;;:43;;;;;;;;;;;;;;;:14;:43;;;5:2:-1;;;;30:1;27;20:12;5:2;31592:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31592:43:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31592:43:0;31674:14;;:49;;;;;;-1:-1:-1;;;;;31674:49:0;;;;;;;;;;;;;;;31592:43;;-1:-1:-1;31650:21:0;;31674:14;;;;;:37;;:49;;;;;31592:43;;31674:49;;;;;;;:14;:49;;;5:2:-1;;;;30:1;27;20:12;5:2;31674:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31674:49:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31674:49:0;31759:14;;:46;;;-1:-1:-1;;;;;31759:46:0;;-1:-1:-1;;;;;31759:46:0;;;;;;;;;;;;;;;31674:49;;-1:-1:-1;31738:18:0;;31759:14;;;;;:34;;:46;;;;;31674:49;;31759:46;;;;;;;:14;:46;;;5:2:-1;;;;30:1;27;20:12;5:2;31759:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31759:46:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31759:46:0;;-1:-1:-1;;;;;;31883:17:0;;;;;;;:65;;;;;31904:44;31922:13;31937:10;31904:17;:44::i;:::-;31879:145;;;31980:4;31969:15;;32003:5;;;;;31879:145;-1:-1:-1;;;31555:3:0;;31504:531;;;;32053:8;32045:50;;;;;;;-1:-1:-1;;;;;32045:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;29647:1613;29795:14;;:73;;;;;;-1:-1:-1;;;;;29795:73:0;;;;;;;;;;;;;;-1:-1:-1;;;;;;29795:73:0;;;;;;;;29780:12;;29795:14;;;;;:34;;:73;;;;;;;;;;;;;;;:14;:73;;;5:2:-1;;;;30:1;27;20:12;5:2;29795:73:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;29795:73:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29795:73:0;;-1:-1:-1;29887:21:0;;;29879:55;;;;;-1:-1:-1;;;;;29879:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30037:14;;:77;;;;;;-1:-1:-1;;;;;30037:77:0;;;;;;;;;;;;;;-1:-1:-1;;;;;;30037:77:0;;;;;;;;29947:19;;;;30009:25;;30037:14;;;:38;;:77;;;;;29947:19;;30037:77;;;;;;;;:14;:77;;;5:2:-1;;;;30:1;27;20:12;5:2;30037:77:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;30037:77:0;;;;;;39:16:-1;36:1;17:17;2:54;101:4;30037:77:0;80:15:-1;;;-1:-1;;76:31;65:43;;120:4;113:20;13:2;5:11;;2:2;;;29:1;26;19:12;2:2;30037:77:0;;;;;;19:11:-1;14:3;11:20;8:2;;;44:1;41;34:12;8:2;62:21;;123:4;114:14;;138:31;;;135:2;;;182:1;179;172:12;135:2;219:3;213:10;331:9;325:2;311:12;307:21;289:16;285:44;282:59;261:11;247:12;244:29;233:116;230:2;;;362:1;359;352:12;230:2;-1:-1;;30133:15:0;;30037:77;;-1:-1:-1;30151:1:0;-1:-1:-1;30133:19:0;-1:-1:-1;30125:43:0;;-1:-1:-1;;30125:43:0;;;;-1:-1:-1;;;;;30125:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30218:9;30213:840;27645:1;30233:29;;30213:840;;30301:14;;:43;;;-1:-1:-1;;;;;30301:43:0;;-1:-1:-1;;;;;30301:43:0;;;;;;;;;;;;;;;30284:14;;30301;;;;;:31;;:43;;;;;;;;;;;;;;;:14;:43;;;5:2:-1;;;;30:1;27;20:12;5:2;30301:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;30301:43:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30301:43:0;30383:14;;:49;;;;;;-1:-1:-1;;;;;30383:49:0;;;;;;;;;;;;;;;30301:43;;-1:-1:-1;30359:21:0;;30383:14;;;;;:37;;:49;;;;;30301:43;;30383:49;;;;;;;:14;:49;;;5:2:-1;;;;30:1;27;20:12;5:2;30383:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;30383:49:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30383:49:0;30468:14;;:46;;;-1:-1:-1;;;;;30468:46:0;;-1:-1:-1;;;;;30468:46:0;;;;;;;;;;;;;;;30383:49;;-1:-1:-1;30447:18:0;;30468:14;;;;;:34;;:46;;;;;30383:49;;30468:46;;;;;;;:14;:46;;;5:2:-1;;;;30:1;27;20:12;5:2;30468:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;30468:46:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30468:46:0;;-1:-1:-1;;;;;;30533:20:0;;;;;;:68;;;30557:44;30575:13;30590:10;30557:17;:44::i;:::-;30529:513;;;30695:1;30680:16;;;;;30763:9;30758:269;30782:8;:15;30778:1;:19;30758:269;;;30841:8;30850:1;30841:11;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30831:21:0;:6;-1:-1:-1;;;;;30831:21:0;;30827:181;;;30983:1;30966:18;;;;30827:181;30799:3;;30758:269;;;;30529:513;-1:-1:-1;;;30264:3:0;;30213:840;;;-1:-1:-1;31085:1:0;31071:15;;31063:45;;;;;-1:-1:-1;;;;;31063:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31119:17;31139:32;31153:11;31165:1;31153:13;31168:2;31139:13;:32::i;:::-;31119:52;-1:-1:-1;31190:26:0;;;;31182:70;;;;;-1:-1:-1;;;;;31182:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29647:1613;;;;;;;;;:::o;32111:172::-;32205:4;32248:3;32230:14;:21;;32229:46;;;;;32271:3;32257:11;:17;32229:46;32222:53;32111:172;-1:-1:-1;;;32111:172:0:o;25557:676::-;25623:10;25667:2;25654;:9;:15;;25646:41;;;;;;;-1:-1:-1;;;;;25646:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25885:2:0;25877:11;25871:18;-1:-1:-1;;;;;25861:29:0;;25772:454::o;26616:240::-;26746:1;26737:6;:10;26733:116;;;26772:14;;:45;;;;;;-1:-1:-1;;;;;26772:45:0;;;;;;;;;;;;;;;:14;;;;;:27;;:45;;;;;;;;;;;;;;:14;:45;;;5:2:-1;;;;30:1;27;20:12;5:2;26772:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26772:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26772:45:0;26821:1;26772:50;;26764:73;;;;;-1:-1:-1;;;;;26764:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;40974:1267;41043:9;41080:3;41067:2;:9;:16;;41059:50;;;;;;;-1:-1:-1;;;;;41059:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42218:3:0;42210:12;42204:19;;41194:1040::o;42249:380::-;42443:59;;42460:10;42443:59;;;;;;;42324:7;42443:59;;;;;;42489:4;42443:59;;;;;;;;;42324:7;;;;42460:10;42324:7;;42489:4;;42443:59;;;;;;;;;;;;36:153:-1;66:2;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;;;42443:59:0;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;42443:59:0;;;42433:70;;;;;;42415:88;;42514:20;42564:16;;;;;;;;;;;;;;;;;;42582:7;42547:43;;;;;;;;;;;;;;;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;42547:43:0;;;;;-1:-1:-1;42547:43:0;;;26:21:-1;;;6:49;;42547:43:0;;;;;42537:54;;;;;;;;;42249:380;-1:-1:-1;;;;;;42249:380:0:o;22042:320::-;-1:-1:-1;;;;;22159:25:0;;;;22151:57;;;;;-1:-1:-1;;;;;22151:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22219:21;22243:30;22251:9;22262:10;22243:7;:30::i;:::-;22219:54;-1:-1:-1;;;;;;22292:28:0;;;;;;;22284:70;;;;;-1:-1:-1;;;;;22284:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;22042:320;;;;:::o;26925:280::-;-1:-1:-1;;;;;27021:14:0;;:8;:14;;;;;;;;;;;27012:23;;27004:51;;;;;-1:-1:-1;;;;;27004:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27107:3;27113:5;27107:11;27074:29;27087:6;27095:7;27074:12;:29::i;:::-;:44;;27066:70;;;;;-1:-1:-1;;;;;27066:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27174:14:0;;;:8;:14;;;;;;;;;;:23;26925:280::o;21619:415::-;21840:67;;21857:10;21840:67;;;;;;;21698:7;21840:67;;;;;;21886:4;21840:67;;;;;;;;;21698:7;;;;21857:10;21698:7;;21886:4;;21840:67;;21900:6;;21840:67;;;;;;;;;;;;;;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;21840:67:0;;;;;-1:-1:-1;21840:67:0;;;26:21:-1;;;6:49;;21840:67:0;;;;;;21830:78;;;;;;;;;21969:16;;;;;;;;;;;;;;;;21952:43;;21830:78;;-1:-1:-1;;;;21840:67:0;;-1:-1:-1;21830:78:0;;-1:-1:-1;21952:43:0;;;;-1:-1:-1;21952:43:0;;21969:16;-1:-1:-1;21969:16:0;21952:43;21969:16;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;21952:43:0;;;;;-1:-1:-1;21952:43:0;;;26:21:-1;;;6:49;;21952:43:0;;;;;21942:54;;;;;;;;;21619:415;-1:-1:-1;;;;;;;21619:415:0:o;40623:343::-;40695:10;40733:2;40720;:9;:15;;40712:49;;;;;;;-1:-1:-1;;;;;40712:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40952:2:0;40944:11;40938:18;-1:-1:-1;;;;;40928:29:0;;40834:128::o;20230:218::-;20289:7;20309:9;20325:1;20321;:5;;;;;;;;20309:17;;20344:1;20340;:5;;;;;;;;:10;20337:104;;;20374:1;-1:-1:-1;20367:8:0;;20337:104;20428:1;20424:5;;-1:-1:-1;20417:12:0;;23364:1930;23505:16;;23442:7;;23525:2;23505:22;23501:74;;-1:-1:-1;23560:1:0;23544:19;;23501:74;23936:4;23921:20;;23915:27;23982:4;23967:20;;23961:27;24036:4;24021:20;;24015:27;23644:9;24007:36;24966:66;24953:79;;24949:129;;;25064:1;25049:17;;;;;;;24949:129;25094:1;:7;;25099:2;25094:7;;:18;;;;;25105:1;:7;;25110:2;25105:7;;25094:18;25090:68;;;25144:1;25129:17;;;;;;;25090:68;25262:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;25262:24:0;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;25262:24:0;;-1:-1:-1;;25262:24:0;;;23364:1930;-1:-1:-1;;;;;;;23364:1930:0:o;19104:294::-;19162:7;19190:5;;;19182:14;;;;;;19265:9;19281:1;19277;:5;;;;;;;;;19104:294;-1:-1:-1;;;;19104:294:0:o

Swarm Source

bzzr://013df0421090a3dc4c98ea6f9f47bfa555d1508984a7f8aa761a3ec4b47f8b91

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.