ETH Price: $1,977.37 (-2.11%)
 

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
Add Claim109377792020-09-26 10:44:551984 days ago1601117095IN
0x5Ee1EFa9...Da9bCdE4D
0 ETH0.0173274550
Add Key109373862020-09-26 9:16:471984 days ago1601111807IN
0x5Ee1EFa9...Da9bCdE4D
0 ETH0.0068770550

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

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xe8E2C9ec...a13297748
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Identity

Compiler Version
v0.6.2+commit.bacdbe57

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity Multiple files format)

File 1 of 6: Identity.sol
pragma solidity ^0.6.2;

import "./ERC734.sol";
import "./IIdentity.sol";

/**
 * @dev Implementation of the `IERC734` "KeyHolder" and the `IERC735` "ClaimHolder" interfaces into a common Identity Contract.
 */
contract Identity is ERC734, IIdentity {

    mapping (bytes32 => Claim) private claims;
    mapping (uint256 => bytes32[]) private claimsByTopic;

    /**
    * @notice Implementation of the addClaim function from the ERC-735 standard
    *  Require that the msg.sender has claim signer key.
    *
    * @param _topic The type of claim
    * @param _scheme The scheme with which this claim SHOULD be verified or how it should be processed.
    * @param _issuer The issuers identity contract address, or the address used to sign the above signature.
    * @param _signature Signature which is the proof that the claim issuer issued a claim of topic for this identity.
    * it MUST be a signed message of the following structure: keccak256(abi.encode(address identityHolder_address, uint256 _ topic, bytes data))
    * @param _data The hash of the claim data, sitting in another location, a bit-mask, call data, or actual data based on the claim scheme.
    * @param _uri The location of the claim, this can be HTTP links, swarm hashes, IPFS hashes, and such.
    *
    * @return claimRequestId Returns claimRequestId: COULD be send to the approve function, to approve or reject this claim.
    * triggers ClaimAdded event.
    */
    function addClaim(
        uint256 _topic,
        uint256 _scheme,
        address _issuer,
        bytes memory _signature,
        bytes memory _data,
        string memory _uri
    )
    public
    override
    returns (bytes32 claimRequestId)
    {
        bytes32 claimId = keccak256(abi.encode(_issuer, _topic));

        if (msg.sender != address(this)) {
            require(keyHasPurpose(keccak256(abi.encode(msg.sender)), 3), "Permissions: Sender does not have claim signer key");
        }

        if (claims[claimId].issuer != _issuer) {
            claimsByTopic[_topic].push(claimId);
            claims[claimId].topic = _topic;
            claims[claimId].scheme = _scheme;
            claims[claimId].issuer = _issuer;
            claims[claimId].signature = _signature;
            claims[claimId].data = _data;
            claims[claimId].uri = _uri;

            emit ClaimAdded(
                claimId,
                _topic,
                _scheme,
                _issuer,
                _signature,
                _data,
                _uri
            );
        } else {
            claims[claimId].topic = _topic;
            claims[claimId].scheme = _scheme;
            claims[claimId].issuer = _issuer;
            claims[claimId].signature = _signature;
            claims[claimId].data = _data;
            claims[claimId].uri = _uri;

            emit ClaimChanged(
                claimId,
                _topic,
                _scheme,
                _issuer,
                _signature,
                _data,
                _uri
            );
        }

        return claimId;
    }

    /**
    * @notice Implementation of the removeClaim function from the ERC-735 standard
    * Require that the msg.sender has management key.
    * Can only be removed by the claim issuer, or the claim holder itself.
    *
    * @param _claimId The identity of the claim i.e. keccak256(abi.encode(_issuer, _topic))
    *
    * @return success Returns TRUE when the claim was removed.
    * triggers ClaimRemoved event
    */
    function removeClaim(bytes32 _claimId) public override returns (bool success) {
        if (msg.sender != address(this)) {
            require(keyHasPurpose(keccak256(abi.encode(msg.sender)), 3), "Permissions: Sender does not have CLAIM key");
        }

        if (claims[_claimId].topic == 0) {
            revert("NonExisting: There is no claim with this ID");
        }

        uint claimIndex = 0;
        while (claimsByTopic[claims[_claimId].topic][claimIndex] != _claimId) {
            claimIndex++;
        }

        claimsByTopic[claims[_claimId].topic][claimIndex] = claimsByTopic[claims[_claimId].topic][claimsByTopic[claims[_claimId].topic].length - 1];
        claimsByTopic[claims[_claimId].topic].pop();

        emit ClaimRemoved(
            _claimId,
            claims[_claimId].topic,
            claims[_claimId].scheme,
            claims[_claimId].issuer,
            claims[_claimId].signature,
            claims[_claimId].data,
            claims[_claimId].uri
        );

        delete claims[_claimId];

        return true;
    }

    /**
    * @notice Implementation of the getClaim function from the ERC-735 standard.
    *
    * @param _claimId The identity of the claim i.e. keccak256(abi.encode(_issuer, _topic))
    *
    * @return topic Returns all the parameters of the claim for the specified _claimId (topic, scheme, signature, issuer, data, uri) .
    * @return scheme Returns all the parameters of the claim for the specified _claimId (topic, scheme, signature, issuer, data, uri) .
    * @return issuer Returns all the parameters of the claim for the specified _claimId (topic, scheme, signature, issuer, data, uri) .
    * @return signature Returns all the parameters of the claim for the specified _claimId (topic, scheme, signature, issuer, data, uri) .
    * @return data Returns all the parameters of the claim for the specified _claimId (topic, scheme, signature, issuer, data, uri) .
    * @return uri Returns all the parameters of the claim for the specified _claimId (topic, scheme, signature, issuer, data, uri) .
    */
    function getClaim(bytes32 _claimId)
    public
    override
    view
    returns(
        uint256 topic,
        uint256 scheme,
        address issuer,
        bytes memory signature,
        bytes memory data,
        string memory uri
    )
    {
        return (
            claims[_claimId].topic,
            claims[_claimId].scheme,
            claims[_claimId].issuer,
            claims[_claimId].signature,
            claims[_claimId].data,
            claims[_claimId].uri
        );
    }

    /**
    * @notice Implementation of the getClaimIdsByTopic function from the ERC-735 standard.
    * used to get all the claims from the specified topic
    *
    * @param _topic The identity of the claim i.e. keccak256(abi.encode(_issuer, _topic))
    *
    * @return claimIds Returns an array of claim IDs by topic.
    */
    function getClaimIdsByTopic(uint256 _topic)
    public
    override
    view
    returns(bytes32[] memory claimIds)
    {
        return claimsByTopic[_topic];
    }
}

File 2 of 6: ERC734.sol
pragma solidity ^0.6.2;

import "./IERC734.sol";

/**
 * @dev Implementation of the `IERC734` "KeyHolder" interface.
 */
contract ERC734 is IERC734 {
    uint256 public constant MANAGEMENT_KEY = 1;
    uint256 public constant ACTION_KEY = 2;
    uint256 public constant CLAIM_SIGNER_KEY = 3;
    uint256 public constant ENCRYPTION_KEY = 4;

    uint256 private executionNonce;

    struct Execution {
        address to;
        uint256 value;
        bytes data;
        bool approved;
        bool executed;
    }

    mapping (bytes32 => Key) private keys;
    mapping (uint256 => bytes32[]) private keysByPurpose;
    mapping (uint256 => Execution) private executions;

    event ExecutionFailed(uint256 indexed executionId, address indexed to, uint256 indexed value, bytes data);

    constructor() public {
        bytes32 _key = keccak256(abi.encode(msg.sender));

        keys[_key].key = _key;
        keys[_key].purposes = [1];
        keys[_key].keyType = 1;

        keysByPurpose[1].push(_key);

        emit KeyAdded(_key, 1, 1);
    }

    /**
       * @notice Implementation of the getKey function from the ERC-734 standard
       *
       * @param _key The public key.  for non-hex and long keys, its the Keccak256 hash of the key
       *
       * @return purposes Returns the full key data, if present in the identity.
       * @return keyType Returns the full key data, if present in the identity.
       * @return key Returns the full key data, if present in the identity.
       */
    function getKey(bytes32 _key)
    public
    override
    view
    returns(uint256[] memory purposes, uint256 keyType, bytes32 key)
    {
        return (keys[_key].purposes, keys[_key].keyType, keys[_key].key);
    }

    /**
    * @notice gets the purposes of a key
    *
    * @param _key The public key.  for non-hex and long keys, its the Keccak256 hash of the key
    *
    * @return _purposes Returns the purposes of the specified key
    */
    function getKeyPurposes(bytes32 _key)
    public
    override
    view
    returns(uint256[] memory _purposes)
    {
        return (keys[_key].purposes);
    }

    /**
        * @notice gets all the keys with a specific purpose from an identity
        *
        * @param _purpose a uint256[] Array of the key types, like 1 = MANAGEMENT, 2 = ACTION, 3 = CLAIM, 4 = ENCRYPTION
        *
        * @return _keys Returns an array of public key bytes32 hold by this identity and having the specified purpose
        */
    function getKeysByPurpose(uint256 _purpose)
    public
    override
    view
    returns(bytes32[] memory _keys)
    {
        return keysByPurpose[_purpose];
    }

    /**
        * @notice implementation of the addKey function of the ERC-734 standard
        * Adds a _key to the identity. The _purpose specifies the purpose of key. Initially we propose four purposes:
        * 1: MANAGEMENT keys, which can manage the identity
        * 2: ACTION keys, which perform actions in this identities name (signing, logins, transactions, etc.)
        * 3: CLAIM signer keys, used to sign claims on other identities which need to be revokable.
        * 4: ENCRYPTION keys, used to encrypt data e.g. hold in claims.
        * MUST only be done by keys of purpose 1, or the identity itself.
        * If its the identity itself, the approval process will determine its approval.
        *
        * @param _key keccak256 representation of an ethereum address
        * @param _type type of key used, which would be a uint256 for different key types. e.g. 1 = ECDSA, 2 = RSA, etc.
        * @param _purpose a uint256[] Array of the key types, like 1 = MANAGEMENT, 2 = ACTION, 3 = CLAIM, 4 = ENCRYPTION
        *
        * @return success Returns TRUE if the addition was successful and FALSE if not
        */

    function addKey(bytes32 _key, uint256 _purpose, uint256 _type)
    public
    override
    returns (bool success)
    {
        if (msg.sender != address(this)) {
            require(keyHasPurpose(keccak256(abi.encode(msg.sender)), 1), "Permissions: Sender does not have management key");
        }

        if (keys[_key].key == _key) {
            for (uint keyPurposeIndex = 0; keyPurposeIndex < keys[_key].purposes.length; keyPurposeIndex++) {
                uint256 purpose = keys[_key].purposes[keyPurposeIndex];

                if (purpose == _purpose) {
                    revert("Conflict: Key already has purpose");
                }
            }

            keys[_key].purposes.push(_purpose);
        } else {
            keys[_key].key = _key;
            keys[_key].purposes = [_purpose];
            keys[_key].keyType = _type;
        }

        keysByPurpose[_purpose].push(_key);

        emit KeyAdded(_key, _purpose, _type);

        return true;
    }

    function approve(uint256 _id, bool _approve)
    public
    override
    returns (bool success)
    {
        require(keyHasPurpose(keccak256(abi.encode(msg.sender)), 2), "Sender does not have action key");

        emit Approved(_id, _approve);

        if (_approve == true) {
            executions[_id].approved = true;

            (success,) = executions[_id].to.call.value(executions[_id].value)(abi.encode(executions[_id].data, 0));

            if (success) {
                executions[_id].executed = true;

                emit Executed(
                    _id,
                    executions[_id].to,
                    executions[_id].value,
                    executions[_id].data
                );

                return true;
            } else {
                emit ExecutionFailed(
                    _id,
                    executions[_id].to,
                    executions[_id].value,
                    executions[_id].data
                );

                return false;
            }
        } else {
            executions[_id].approved = false;
        }
        return true;
    }

    function execute(address _to, uint256 _value, bytes memory _data)
    public
    override
    payable
    returns (uint256 executionId)
    {
        require(!executions[executionNonce].executed, "Already executed");
        executions[executionNonce].to = _to;
        executions[executionNonce].value = _value;
        executions[executionNonce].data = _data;

        emit ExecutionRequested(executionNonce, _to, _value, _data);

        if (keyHasPurpose(keccak256(abi.encode(msg.sender)), 2)) {
            approve(executionNonce, true);
        }

        executionNonce++;
        return executionNonce-1;
    }

    function removeKey(bytes32 _key, uint256 _purpose)
    public
    override
    returns (bool success)
    {
        require(keys[_key].key == _key, "NonExisting: Key isn't registered");

        if (msg.sender != address(this)) {
            require(keyHasPurpose(keccak256(abi.encode(msg.sender)), 1), "Permissions: Sender does not have management key"); // Sender has MANAGEMENT_KEY
        }

        require(keys[_key].purposes.length > 0, "NonExisting: Key doesn't have such purpose");

        uint purposeIndex = 0;
        while (keys[_key].purposes[purposeIndex] != _purpose) {
            purposeIndex++;

            if (purposeIndex >= keys[_key].purposes.length) {
                break;
            }
        }

        require(purposeIndex < keys[_key].purposes.length, "NonExisting: Key doesn't have such purpose");

        keys[_key].purposes[purposeIndex] = keys[_key].purposes[keys[_key].purposes.length - 1];
        keys[_key].purposes.pop();

        uint keyIndex = 0;

        while (keysByPurpose[_purpose][keyIndex] != _key) {
            keyIndex++;
        }

        keysByPurpose[_purpose][keyIndex] = keysByPurpose[_purpose][keysByPurpose[_purpose].length - 1];
        keysByPurpose[_purpose].pop();

        uint keyType = keys[_key].keyType;

        if (keys[_key].purposes.length == 0) {
            delete keys[_key];
        }

        emit KeyRemoved(_key, _purpose, keyType);

        return true;
    }


    /**
    * @notice Returns true if the key has MANAGEMENT purpose or the specified purpose.
    */
    function keyHasPurpose(bytes32 _key, uint256 _purpose)
    public
    override
    view
    returns(bool result)
    {
        Key memory key = keys[_key];
        if (key.key == 0) return false;

        for (uint keyPurposeIndex = 0; keyPurposeIndex < key.purposes.length; keyPurposeIndex++) {
            uint256 purpose = key.purposes[keyPurposeIndex];

            if (purpose == MANAGEMENT_KEY || purpose == _purpose) return true;
        }

        return false;
    }
}

File 3 of 6: IClaimIssuer.sol
pragma solidity ^0.6.2;

import "./IIdentity.sol";

interface IClaimIssuer is IIdentity {
    function revokeClaim(bytes32 _claimId, address _identity) external returns(bool);
    function getRecoveredAddress(bytes calldata sig, bytes32 dataHash) external pure returns (address);
    function isClaimRevoked(bytes calldata _sig) external view returns (bool);
    function isClaimValid(IIdentity _identity, uint256 claimTopic, bytes calldata sig, bytes calldata data) external view returns (bool);
}

File 4 of 6: IERC734.sol
pragma solidity ^0.6.2;

/**
 * @dev Interface of the ERC734 (Key Holder) standard as defined in the EIP.
 */
interface IERC734 {
    /**
     * @dev Definition of the structure of a Key.
     *
     * Specification: Keys are cryptographic public keys, or contract addresses associated with this identity.
     * The structure should be as follows:
     *   - key: A public key owned by this identity
     *      - purposes: uint256[] Array of the key purposes, like 1 = MANAGEMENT, 2 = EXECUTION
     *      - keyType: The type of key used, which would be a uint256 for different key types. e.g. 1 = ECDSA, 2 = RSA, etc.
     *      - key: bytes32 The public key. // Its the Keccak256 hash of the key
     */
    struct Key {
        uint256[] purposes;
        uint256 keyType;
        bytes32 key;
    }

    /**
     * @dev Emitted when an execution request was approved.
     *
     * Specification: MUST be triggered when approve was successfully called.
     */
    event Approved(uint256 indexed executionId, bool approved);

    /**
     * @dev Emitted when an execute operation was approved and successfully performed.
     *
     * Specification: MUST be triggered when approve was called and the execution was successfully approved.
     */
    event Executed(uint256 indexed executionId, address indexed to, uint256 indexed value, bytes data);

    /**
     * @dev Emitted when an execution request was performed via `execute`.
     *
     * Specification: MUST be triggered when execute was successfully called.
     */
    event ExecutionRequested(uint256 indexed executionId, address indexed to, uint256 indexed value, bytes data);

    /**
     * @dev Emitted when a key was added to the Identity.
     *
     * Specification: MUST be triggered when addKey was successfully called.
     */
    event KeyAdded(bytes32 indexed key, uint256 indexed purpose, uint256 indexed keyType);

    /**
     * @dev Emitted when a key was removed from the Identity.
     *
     * Specification: MUST be triggered when removeKey was successfully called.
     */
    event KeyRemoved(bytes32 indexed key, uint256 indexed purpose, uint256 indexed keyType);

    /**
     * @dev Emitted when the list of required keys to perform an action was updated.
     *
     * Specification: MUST be triggered when changeKeysRequired was successfully called.
     */
    event KeysRequiredChanged(uint256 purpose, uint256 number);


    /**
     * @dev Adds a _key to the identity. The _purpose specifies the purpose of the key.
     *
     * Triggers Event: `KeyAdded`
     *
     * Specification: MUST only be done by keys of purpose 1, or the identity itself. If it's the identity itself, the approval process will determine its approval.
     */
    function addKey(bytes32 _key, uint256 _purpose, uint256 _keyType) external returns (bool success);

    /**
    * @dev Approves an execution or claim addition.
    *
    * Triggers Event: `Approved`, `Executed`
    *
    * Specification:
    * This SHOULD require n of m approvals of keys purpose 1, if the _to of the execution is the identity contract itself, to successfully approve an execution.
    * And COULD require n of m approvals of keys purpose 2, if the _to of the execution is another contract, to successfully approve an execution.
    */
    function approve(uint256 _id, bool _approve) external returns (bool success);

    /**
     * @dev Passes an execution instruction to an ERC725 identity.
     *
     * Triggers Event: `ExecutionRequested`, `Executed`
     *
     * Specification:
     * SHOULD require approve to be called with one or more keys of purpose 1 or 2 to approve this execution.
     * Execute COULD be used as the only accessor for `addKey` and `removeKey`.
     */
    function execute(address _to, uint256 _value, bytes calldata _data) external payable returns (uint256 executionId);

    /**
     * @dev Returns the full key data, if present in the identity.
     */
    function getKey(bytes32 _key) external view returns (uint256[] memory purposes, uint256 keyType, bytes32 key);

    /**
     * @dev Returns the list of purposes associated with a key.
     */
    function getKeyPurposes(bytes32 _key) external view returns(uint256[] memory _purposes);

    /**
     * @dev Returns an array of public key bytes32 held by this identity.
     */
    function getKeysByPurpose(uint256 _purpose) external view returns (bytes32[] memory keys);

    /**
     * @dev Returns TRUE if a key is present and has the given purpose. If the key is not present it returns FALSE.
     */
    function keyHasPurpose(bytes32 _key, uint256 _purpose) external view returns (bool exists);

    /**
     * @dev Removes _purpose for _key from the identity.
     *
     * Triggers Event: `KeyRemoved`
     *
     * Specification: MUST only be done by keys of purpose 1, or the identity itself. If it's the identity itself, the approval process will determine its approval.
     */
    function removeKey(bytes32 _key, uint256 _purpose) external returns (bool success);
}

File 5 of 6: IERC735.sol
pragma solidity ^0.6.2;

/**
 * @dev Interface of the ERC735 (Claim Holder) standard as defined in the EIP.
 */
interface IERC735 {

    /**
     * @dev Emitted when a claim request was performed.
     *
     * Specification: Is not clear
     */
    event ClaimRequested(uint256 indexed claimRequestId, uint256 indexed topic, uint256 scheme, address indexed issuer, bytes signature, bytes data, string uri);

    /**
     * @dev Emitted when a claim was added.
     *
     * Specification: MUST be triggered when a claim was successfully added.
     */
    event ClaimAdded(bytes32 indexed claimId, uint256 indexed topic, uint256 scheme, address indexed issuer, bytes signature, bytes data, string uri);

    /**
     * @dev Emitted when a claim was removed.
     *
     * Specification: MUST be triggered when removeClaim was successfully called.
     */
    event ClaimRemoved(bytes32 indexed claimId, uint256 indexed topic, uint256 scheme, address indexed issuer, bytes signature, bytes data, string uri);

    /**
     * @dev Emitted when a claim was changed.
     *
     * Specification: MUST be triggered when changeClaim was successfully called.
     */
    event ClaimChanged(bytes32 indexed claimId, uint256 indexed topic, uint256 scheme, address indexed issuer, bytes signature, bytes data, string uri);

    /**
     * @dev Definition of the structure of a Claim.
     *
     * Specification: Claims are information an issuer has about the identity holder.
     * The structure should be as follows:
     *   - claim: A claim published for the Identity.
     *      - topic: A uint256 number which represents the topic of the claim. (e.g. 1 biometric, 2 residence (ToBeDefined: number schemes, sub topics based on number ranges??))
     *      - scheme : The scheme with which this claim SHOULD be verified or how it should be processed. Its a uint256 for different schemes. E.g. could 3 mean contract verification, where the data will be call data, and the issuer a contract address to call (ToBeDefined). Those can also mean different key types e.g. 1 = ECDSA, 2 = RSA, etc. (ToBeDefined)
     *      - issuer: The issuers identity contract address, or the address used to sign the above signature. If an identity contract, it should hold the key with which the above message was signed, if the key is not present anymore, the claim SHOULD be treated as invalid. The issuer can also be a contract address itself, at which the claim can be verified using the call data.
     *      - signature: Signature which is the proof that the claim issuer issued a claim of topic for this identity. it MUST be a signed message of the following structure: `keccak256(abi.encode(identityHolder_address, topic, data))`
     *      - data: The hash of the claim data, sitting in another location, a bit-mask, call data, or actual data based on the claim scheme.
     *      - uri: The location of the claim, this can be HTTP links, swarm hashes, IPFS hashes, and such.
     */
    struct Claim {
        uint256 topic;
        uint256 scheme;
        address issuer;
        bytes signature;
        bytes data;
        string uri;
    }

    /**
     * @dev Get a claim by its ID.
     *
     * Claim IDs are generated using `keccak256(abi.encode(address issuer_address, uint256 topic))`.
     */
    function getClaim(bytes32 _claimId) external view returns(uint256 topic, uint256 scheme, address issuer, bytes memory signature, bytes memory data, string memory uri);

    /**
     * @dev Returns an array of claim IDs by topic.
     */
    function getClaimIdsByTopic(uint256 _topic) external view returns(bytes32[] memory claimIds);

    /**
     * @dev Add or update a claim.
     *
     * Triggers Event: `ClaimRequested`, `ClaimAdded`, `ClaimChanged`
     *
     * Specification: Requests the ADDITION or the CHANGE of a claim from an issuer.
     * Claims can requested to be added by anybody, including the claim holder itself (self issued).
     *
     * _signature is a signed message of the following structure: `keccak256(abi.encode(address identityHolder_address, uint256 topic, bytes data))`.
     * Claim IDs are generated using `keccak256(abi.encode(address issuer_address + uint256 topic))`.
     *
     * This COULD implement an approval process for pending claims, or add them right away.
     * MUST return a claimRequestId (use claim ID) that COULD be sent to the approve function.
     */
    function addClaim(uint256 _topic, uint256 _scheme, address issuer, bytes calldata _signature, bytes calldata _data, string calldata _uri) external returns (bytes32 claimRequestId);

    /**
     * @dev Removes a claim.
     *
     * Triggers Event: `ClaimRemoved`
     *
     * Claim IDs are generated using `keccak256(abi.encode(address issuer_address, uint256 topic))`.
     */
    function removeClaim(bytes32 _claimId) external returns (bool success);
}

File 6 of 6: IIdentity.sol
pragma solidity ^0.6.2;

import "./IERC734.sol";
import "./IERC735.sol";

interface IIdentity is IERC734, IERC735 {}

Contract Security Audit

Contract ABI

API
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"executionId","type":"uint256"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"Approved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"claimId","type":"bytes32"},{"indexed":true,"internalType":"uint256","name":"topic","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"scheme","type":"uint256"},{"indexed":true,"internalType":"address","name":"issuer","type":"address"},{"indexed":false,"internalType":"bytes","name":"signature","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"string","name":"uri","type":"string"}],"name":"ClaimAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"claimId","type":"bytes32"},{"indexed":true,"internalType":"uint256","name":"topic","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"scheme","type":"uint256"},{"indexed":true,"internalType":"address","name":"issuer","type":"address"},{"indexed":false,"internalType":"bytes","name":"signature","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"string","name":"uri","type":"string"}],"name":"ClaimChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"claimId","type":"bytes32"},{"indexed":true,"internalType":"uint256","name":"topic","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"scheme","type":"uint256"},{"indexed":true,"internalType":"address","name":"issuer","type":"address"},{"indexed":false,"internalType":"bytes","name":"signature","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"string","name":"uri","type":"string"}],"name":"ClaimRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"claimRequestId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"topic","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"scheme","type":"uint256"},{"indexed":true,"internalType":"address","name":"issuer","type":"address"},{"indexed":false,"internalType":"bytes","name":"signature","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"string","name":"uri","type":"string"}],"name":"ClaimRequested","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"executionId","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"Executed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"executionId","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"ExecutionFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"executionId","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"ExecutionRequested","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"key","type":"bytes32"},{"indexed":true,"internalType":"uint256","name":"purpose","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"keyType","type":"uint256"}],"name":"KeyAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"key","type":"bytes32"},{"indexed":true,"internalType":"uint256","name":"purpose","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"keyType","type":"uint256"}],"name":"KeyRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"purpose","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"number","type":"uint256"}],"name":"KeysRequiredChanged","type":"event"},{"inputs":[],"name":"ACTION_KEY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CLAIM_SIGNER_KEY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ENCRYPTION_KEY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MANAGEMENT_KEY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_topic","type":"uint256"},{"internalType":"uint256","name":"_scheme","type":"uint256"},{"internalType":"address","name":"_issuer","type":"address"},{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"bytes","name":"_data","type":"bytes"},{"internalType":"string","name":"_uri","type":"string"}],"name":"addClaim","outputs":[{"internalType":"bytes32","name":"claimRequestId","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_key","type":"bytes32"},{"internalType":"uint256","name":"_purpose","type":"uint256"},{"internalType":"uint256","name":"_type","type":"uint256"}],"name":"addKey","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"bool","name":"_approve","type":"bool"}],"name":"approve","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"execute","outputs":[{"internalType":"uint256","name":"executionId","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_claimId","type":"bytes32"}],"name":"getClaim","outputs":[{"internalType":"uint256","name":"topic","type":"uint256"},{"internalType":"uint256","name":"scheme","type":"uint256"},{"internalType":"address","name":"issuer","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"string","name":"uri","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_topic","type":"uint256"}],"name":"getClaimIdsByTopic","outputs":[{"internalType":"bytes32[]","name":"claimIds","type":"bytes32[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_key","type":"bytes32"}],"name":"getKey","outputs":[{"internalType":"uint256[]","name":"purposes","type":"uint256[]"},{"internalType":"uint256","name":"keyType","type":"uint256"},{"internalType":"bytes32","name":"key","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_key","type":"bytes32"}],"name":"getKeyPurposes","outputs":[{"internalType":"uint256[]","name":"_purposes","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_purpose","type":"uint256"}],"name":"getKeysByPurpose","outputs":[{"internalType":"bytes32[]","name":"_keys","type":"bytes32[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_key","type":"bytes32"},{"internalType":"uint256","name":"_purpose","type":"uint256"}],"name":"keyHasPurpose","outputs":[{"internalType":"bool","name":"result","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_claimId","type":"bytes32"}],"name":"removeClaim","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_key","type":"bytes32"},{"internalType":"uint256","name":"_purpose","type":"uint256"}],"name":"removeKey","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

0x6080604052600033604051602001808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019150506040516020818303038152906040528051906020012090508060016000838152602001908152602001600020600201819055506040518060200160405280600160ff1681525060016000838152602001908152602001600020600001906001620000af9291906200013d565b506001806000838152602001908152602001600020600101819055506002600060018152602001908152602001600020819080600181540180825580915050600190039060005260206000200160009091909190915055600180827f480000bb1edad8ca1470381cc334b1917fbd51c6531f3a623ea8e0ec7e38a6e960405160405180910390a450620001bc565b82805482825590600052602060002090810192821562000181579160200282015b8281111562000180578251829060ff169055916020019190600101906200015e565b5b50905062000190919062000194565b5090565b620001b991905b80821115620001b55760008160009055506001016200019b565b5090565b90565b61315a80620001cc6000396000f3fe6080604052600436106100f35760003560e01c80639010f7261161008a578063c670218711610059578063c6702187146107e4578063c9100bcb1461080f578063d202158d146109dc578063fb307b3414610a39576100f3565b80639010f726146103f25780639e140cc814610482578063b1a34e0d146104ad578063b61d27f6146106eb576100f3565b806353d413c5116100c657806353d413c51461027b578063747442d3146102d857806375e5598c1461033757806380e9e9e114610362576100f3565b8063058b316c146100f857806312aaac70146101235780631d381240146101c15780634eee424a14610228575b600080fd5b34801561010457600080fd5b5061010d610ac9565b6040518082815260200191505060405180910390f35b34801561012f57600080fd5b5061015c6004803603602081101561014657600080fd5b8101908080359060200190929190505050610ace565b6040518080602001848152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156101ab578082015181840152602081019050610190565b5050505090500194505050505060405180910390f35b3480156101cd57600080fd5b5061020e600480360360608110156101e457600080fd5b81019080803590602001909291908035906020019092919080359060200190929190505050610b76565b604051808215151515815260200191505060405180910390f35b34801561023457600080fd5b506102616004803603602081101561024b57600080fd5b8101908080359060200190929190505050610e5c565b604051808215151515815260200191505060405180910390f35b34801561028757600080fd5b506102be6004803603604081101561029e57600080fd5b81019080803590602001909291908035906020019092919050505061141a565b604051808215151515815260200191505060405180910390f35b3480156102e457600080fd5b5061031d600480360360408110156102fb57600080fd5b81019080803590602001909291908035151590602001909291905050506118fa565b604051808215151515815260200191505060405180910390f35b34801561034357600080fd5b5061034c611ef1565b6040518082815260200191505060405180910390f35b34801561036e57600080fd5b5061039b6004803603602081101561038557600080fd5b8101908080359060200190929190505050611ef6565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156103de5780820151818401526020810190506103c3565b505050509050019250505060405180910390f35b3480156103fe57600080fd5b5061042b6004803603602081101561041557600080fd5b8101908080359060200190929190505050611f61565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b8381101561046e578082015181840152602081019050610453565b505050509050019250505060405180910390f35b34801561048e57600080fd5b50610497611fcc565b6040518082815260200191505060405180910390f35b3480156104b957600080fd5b506106d5600480360360c08110156104d057600080fd5b810190808035906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561052157600080fd5b82018360208201111561053357600080fd5b8035906020019184600183028401116401000000008311171561055557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156105b857600080fd5b8201836020820111156105ca57600080fd5b803590602001918460018302840111640100000000831117156105ec57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561064f57600080fd5b82018360208201111561066157600080fd5b8035906020019184600183028401116401000000008311171561068357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611fd1565b6040518082815260200191505060405180910390f35b6107ce6004803603606081101561070157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561074857600080fd5b82018360208201111561075a57600080fd5b8035906020019184600183028401116401000000008311171561077c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612714565b6040518082815260200191505060405180910390f35b3480156107f057600080fd5b506107f9612994565b6040518082815260200191505060405180910390f35b34801561081b57600080fd5b506108486004803603602081101561083257600080fd5b8101908080359060200190929190505050612999565b604051808781526020018681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001806020018060200180602001848103845287818151815260200191508051906020019080838360005b838110156108ce5780820151818401526020810190506108b3565b50505050905090810190601f1680156108fb5780820380516001836020036101000a031916815260200191505b50848103835286818151815260200191508051906020019080838360005b83811015610934578082015181840152602081019050610919565b50505050905090810190601f1680156109615780820380516001836020036101000a031916815260200191505b50848103825285818151815260200191508051906020019080838360005b8381101561099a57808201518184015260208101905061097f565b50505050905090810190601f1680156109c75780820380516001836020036101000a031916815260200191505b50995050505050505050505060405180910390f35b3480156109e857600080fd5b50610a1f600480360360408110156109ff57600080fd5b810190808035906020019092919080359060200190929190505050612c33565b604051808215151515815260200191505060405180910390f35b348015610a4557600080fd5b50610a7260048036036020811015610a5c57600080fd5b8101908080359060200190929190505050612d4b565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610ab5578082015181840152602081019050610a9a565b505050509050019250505060405180910390f35b600181565b6060600080600160008581526020019081526020016000206000016001600086815260200190815260200160002060010154600160008781526020019081526020016000206002015482805480602002602001604051908101604052809291908181526020018280548015610b6257602002820191906000526020600020905b815481526020019060010190808311610b4e575b505050505092509250925092509193909250565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c5e57610c0833604051602001808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050604051602081830303815290604052805190602001206001612c33565b610c5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061302c6030913960400191505060405180910390fd5b5b8360016000868152602001908152602001600020600201541415610d7d5760008090505b6001600086815260200190815260200160002060000180549050811015610d3a576000600160008781526020019081526020016000206000018281548110610cc657fe5b9060005260206000200154905084811415610d2c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806130e36021913960400191505060405180910390fd5b508080600101915050610c82565b5060016000858152602001908152602001600020600001839080600181540180825580915050600190039060005260206000200160009091909190915055610de8565b83600160008681526020019081526020016000206002018190555060405180602001604052808481525060016000868152602001908152602001600020600001906001610dcb929190612db9565b508160016000868152602001908152602001600020600101819055505b600260008481526020019081526020016000208490806001815401808255809150506001900390600052602060002001600090919091909150558183857f480000bb1edad8ca1470381cc334b1917fbd51c6531f3a623ea8e0ec7e38a6e960405160405180910390a4600190509392505050565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f4457610eee33604051602001808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050604051602081830303815290604052805190602001206003612c33565b610f43576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b81526020018061308e602b913960400191505060405180910390fd5b5b600060046000848152602001908152602001600020600001541415610fb4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180613001602b913960400191505060405180910390fd5b60008090505b8260056000600460008781526020019081526020016000206000015481526020019081526020016000208281548110610fef57fe5b90600052602060002001541461100c578080600101915050610fba565b60056000600460008681526020019081526020016000206000015481526020019081526020016000206001600560006004600088815260200190815260200160002060000154815260200190815260200160002080549050038154811061106f57fe5b9060005260206000200154600560006004600087815260200190815260200160002060000154815260200190815260200160002082815481106110ae57fe5b906000526020600020018190555060056000600460008681526020019081526020016000206000015481526020019081526020016000208054806110ee57fe5b600190038181906000526020600020016000905590556004600084815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166004600085815260200190815260200160002060000154847f3cf57863a89432c61c4a27073c6ee39e8a764bff5a05aebfbcdcdc80b2e6130a600460008881526020019081526020016000206001015460046000898152602001908152602001600020600301600460008a8152602001908152602001600020600401600460008b81526020019081526020016000206005016040518085815260200180602001806020018060200184810384528781815460018160011615610100020316600290048152602001915080546001816001161561010002031660029004801561127a5780601f1061124f5761010080835404028352916020019161127a565b820191906000526020600020905b81548152906001019060200180831161125d57829003601f168201915b50508481038352868181546001816001161561010002031660029004815260200191508054600181600116156101000203166002900480156112fd5780601f106112d2576101008083540402835291602001916112fd565b820191906000526020600020905b8154815290600101906020018083116112e057829003601f168201915b50508481038252858181546001816001161561010002031660029004815260200191508054600181600116156101000203166002900480156113805780601f1061135557610100808354040283529160200191611380565b820191906000526020600020905b81548152906001019060200180831161136357829003601f168201915b505097505050505050505060405180910390a46004600084815260200190815260200160002060008082016000905560018201600090556002820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556003820160006113ee9190612e06565b6004820160006113fe9190612e06565b60058201600061140e9190612e4e565b50506001915050919050565b60008260016000858152602001908152602001600020600201541461148a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806131046021913960400191505060405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115705761151a33604051602001808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050604051602081830303815290604052805190602001206001612c33565b61156f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061302c6030913960400191505060405180910390fd5b5b60006001600085815260200190815260200160002060000180549050116115e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806130b9602a913960400191505060405180910390fd5b60008090505b8260016000868152602001908152602001600020600001828154811061160a57fe5b90600052602060002001541461164c578080600101915050600160008581526020019081526020016000206000018054905081106116475761164c565b6115e8565b600160008581526020019081526020016000206000018054905081106116bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806130b9602a913960400191505060405180910390fd5b6001600085815260200190815260200160002060000160018060008781526020019081526020016000206000018054905003815481106116f957fe5b906000526020600020015460016000868152602001908152602001600020600001828154811061172557fe5b90600052602060002001819055506001600085815260200190815260200160002060000180548061175257fe5b6001900381819060005260206000200160009055905560008090505b8460026000868152602001908152602001600020828154811061178d57fe5b9060005260206000200154146117aa57808060010191505061176e565b600260008581526020019081526020016000206001600260008781526020019081526020016000208054905003815481106117e157fe5b906000526020600020015460026000868152602001908152602001600020828154811061180a57fe5b90600052602060002001819055506002600085815260200190815260200160002080548061183457fe5b600190038181906000526020600020016000905590556000600160008781526020019081526020016000206001015490506000600160008881526020019081526020016000206000018054905014156118be5760016000878152602001908152602001600020600080820160006118ab9190612e96565b6001820160009055600282016000905550505b8085877f585a4aef50f8267a92b32412b331b20f7f8b96f2245b253b9cc50dcc621d339760405160405180910390a46001935050505092915050565b600061195933604051602001808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050604051602081830303815290604052805190602001206002612c33565b6119cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f53656e64657220646f6573206e6f74206861766520616374696f6e206b65790081525060200191505060405180910390fd5b827fb3932da477fe5d6c8ff2eafef050c0f3a1af18fc07121001482600f36f3715d883604051808215151515815260200191505060405180910390a2600115158215151415611eb75760016003600085815260200190815260200160002060030160006101000a81548160ff0219169083151502179055506003600084815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600360008581526020019081526020016000206001015460036000868152602001908152602001600020600201600060405160200180806020018360ff168152602001828103825284818154600181600116156101000203166002900481526020019150805460018160011615610100020316600290048015611b545780601f10611b2957610100808354040283529160200191611b54565b820191906000526020600020905b815481529060010190602001808311611b3757829003601f168201915b505093505050506040516020818303038152906040526040518082805190602001908083835b60208310611b9d5780518252602082019150602081019050602083039250611b7a565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611bff576040519150601f19603f3d011682016040523d82523d6000602084013e611c04565b606091505b5050809150508015611d7b5760016003600085815260200190815260200160002060030160016101000a81548160ff02191690831515021790555060036000848152602001908152602001600020600101546003600085815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16847f1f920dbda597d7bf95035464170fa58d0a4b57f13a1c315ace6793b9f63688b8600360008881526020019081526020016000206002016040518080602001828103825283818154600181600116156101000203166002900481526020019150805460018160011615610100020316600290048015611d645780601f10611d3957610100808354040283529160200191611d64565b820191906000526020600020905b815481529060010190602001808311611d4757829003601f168201915b50509250505060405180910390a460019050611eeb565b60036000848152602001908152602001600020600101546003600085815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16847fe10c49d9f7c71da23262367013434763cfdb2332267641728d25cd712c5c6a68600360008881526020019081526020016000206002016040518080602001828103825283818154600181600116156101000203166002900481526020019150805460018160011615610100020316600290048015611ea05780601f10611e7557610100808354040283529160200191611ea0565b820191906000526020600020905b815481529060010190602001808311611e8357829003601f168201915b50509250505060405180910390a460009050611eeb565b60006003600085815260200190815260200160002060030160006101000a81548160ff021916908315150217905550600190505b92915050565b600281565b606060056000838152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015611f5557602002820191906000526020600020905b815481526020019060010190808311611f41575b50505050509050919050565b606060026000838152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015611fc057602002820191906000526020600020905b815481526020019060010190808311611fac575b50505050509050919050565b600481565b6000808588604051602001808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001828152602001925050506040516020818303038152906040528051906020012090503073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612117576120c133604051602001808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050604051602081830303815290604052805190602001206003612c33565b612116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603281526020018061305c6032913960400191505060405180910390fd5b5b8573ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124625760056000898152602001908152602001600020819080600181540180825580915050600190039060005260206000200160009091909190915055876004600083815260200190815260200160002060000181905550866004600083815260200190815260200160002060010181905550856004600083815260200190815260200160002060020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508460046000838152602001908152602001600020600301908051906020019061226f929190612eb7565b508360046000838152602001908152602001600020600401908051906020019061229a929190612eb7565b50826004600083815260200190815260200160002060050190805190602001906122c5929190612f37565b508573ffffffffffffffffffffffffffffffffffffffff1688827f46149b18aa084502c3f12bc75e19eda8bda8d102b82cce8474677a6d0d5f43c58a89898960405180858152602001806020018060200180602001848103845287818151815260200191508051906020019080838360005b83811015612352578082015181840152602081019050612337565b50505050905090810190601f16801561237f5780820380516001836020036101000a031916815260200191505b50848103835286818151815260200191508051906020019080838360005b838110156123b857808201518184015260208101905061239d565b50505050905090810190601f1680156123e55780820380516001836020036101000a031916815260200191505b50848103825285818151815260200191508051906020019080838360005b8381101561241e578082015181840152602081019050612403565b50505050905090810190601f16801561244b5780820380516001836020036101000a031916815260200191505b5097505050505050505060405180910390a4612706565b876004600083815260200190815260200160002060000181905550866004600083815260200190815260200160002060010181905550856004600083815260200190815260200160002060020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084600460008381526020019081526020016000206003019080519060200190612517929190612eb7565b5083600460008381526020019081526020016000206004019080519060200190612542929190612eb7565b508260046000838152602001908152602001600020600501908051906020019061256d929190612f37565b508573ffffffffffffffffffffffffffffffffffffffff1688827f3bab293fc00db832d7619a9299914251b8747c036867ec056cbd506f60135b138a89898960405180858152602001806020018060200180602001848103845287818151815260200191508051906020019080838360005b838110156125fa5780820151818401526020810190506125df565b50505050905090810190601f1680156126275780820380516001836020036101000a031916815260200191505b50848103835286818151815260200191508051906020019080838360005b83811015612660578082015181840152602081019050612645565b50505050905090810190601f16801561268d5780820380516001836020036101000a031916815260200191505b50848103825285818151815260200191508051906020019080838360005b838110156126c65780820151818401526020810190506126ab565b50505050905090810190601f1680156126f35780820380516001836020036101000a031916815260200191505b5097505050505050505060405180910390a45b809150509695505050505050565b6000600360008054815260200190815260200160002060030160019054906101000a900460ff16156127ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f416c72656164792065786563757465640000000000000000000000000000000081525060200191505060405180910390fd5b83600360008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600360008054815260200190815260200160002060010181905550816003600080548152602001908152602001600020600201908051906020019061284b929190612eb7565b50828473ffffffffffffffffffffffffffffffffffffffff166000547f8afcfabcb00e47a53a8fc3e9f23ff47ee1926194bb1350dd007c50b412a6cee8856040518080602001828103825283818151815260200191508051906020019080838360005b838110156128c95780820151818401526020810190506128ae565b50505050905090810190601f1680156128f65780820380516001836020036101000a031916815260200191505b509250505060405180910390a461296033604051602001808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050604051602081830303815290604052805190602001206002612c33565b156129745761297260005460016118fa565b505b600080815480929190600101919050555060016000540390509392505050565b600381565b6000806000606080606060046000888152602001908152602001600020600001546004600089815260200190815260200160002060010154600460008a815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600460008b8152602001908152602001600020600301600460008c8152602001908152602001600020600401600460008d8152602001908152602001600020600501828054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612adf5780601f10612ab457610100808354040283529160200191612adf565b820191906000526020600020905b815481529060010190602001808311612ac257829003601f168201915b50505050509250818054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612b7b5780601f10612b5057610100808354040283529160200191612b7b565b820191906000526020600020905b815481529060010190602001808311612b5e57829003601f168201915b50505050509150808054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612c175780601f10612bec57610100808354040283529160200191612c17565b820191906000526020600020905b815481529060010190602001808311612bfa57829003601f168201915b5050505050905095509550955095509550955091939550919395565b6000612c3d612fb7565b6001600085815260200190815260200160002060405180606001604052908160008201805480602002602001604051908101604052809291908181526020018280548015612caa57602002820191906000526020600020905b815481526020019060010190808311612c96575b505050505081526020016001820154815260200160028201548152505090506000801b81604001511415612ce2576000915050612d45565b60008090505b816000015151811015612d3e57600082600001518281518110612d0757fe5b602002602001015190506001811480612d1f57508481145b15612d305760019350505050612d45565b508080600101915050612ce8565b5060009150505b92915050565b606060016000838152602001908152602001600020600001805480602002602001604051908101604052809291908181526020018280548015612dad57602002820191906000526020600020905b815481526020019060010190808311612d99575b50505050509050919050565b828054828255906000526020600020908101928215612df5579160200282015b82811115612df4578251825591602001919060010190612dd9565b5b509050612e029190612fdb565b5090565b50805460018160011615610100020316600290046000825580601f10612e2c5750612e4b565b601f016020900490600052602060002090810190612e4a9190612fdb565b5b50565b50805460018160011615610100020316600290046000825580601f10612e745750612e93565b601f016020900490600052602060002090810190612e929190612fdb565b5b50565b5080546000825590600052602060002090810190612eb49190612fdb565b50565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612ef857805160ff1916838001178555612f26565b82800160010185558215612f26579182015b82811115612f25578251825591602001919060010190612f0a565b5b509050612f339190612fdb565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612f7857805160ff1916838001178555612fa6565b82800160010185558215612fa6579182015b82811115612fa5578251825591602001919060010190612f8a565b5b509050612fb39190612fdb565b5090565b60405180606001604052806060815260200160008152602001600080191681525090565b612ffd91905b80821115612ff9576000816000905550600101612fe1565b5090565b9056fe4e6f6e4578697374696e673a205468657265206973206e6f20636c61696d207769746820746869732049445065726d697373696f6e733a2053656e64657220646f6573206e6f742068617665206d616e6167656d656e74206b65795065726d697373696f6e733a2053656e64657220646f6573206e6f74206861766520636c61696d207369676e6572206b65795065726d697373696f6e733a2053656e64657220646f6573206e6f74206861766520434c41494d206b65794e6f6e4578697374696e673a204b657920646f65736e27742068617665207375636820707572706f7365436f6e666c6963743a204b657920616c72656164792068617320707572706f73654e6f6e4578697374696e673a204b65792069736e27742072656769737465726564a2646970667358221220d0c562dc6c7c64ba538d675621905f850ceff502f7d4f4509a131e5ffa5bd95c64736f6c63430006020033

Deployed Bytecode

0x6080604052600436106100f35760003560e01c80639010f7261161008a578063c670218711610059578063c6702187146107e4578063c9100bcb1461080f578063d202158d146109dc578063fb307b3414610a39576100f3565b80639010f726146103f25780639e140cc814610482578063b1a34e0d146104ad578063b61d27f6146106eb576100f3565b806353d413c5116100c657806353d413c51461027b578063747442d3146102d857806375e5598c1461033757806380e9e9e114610362576100f3565b8063058b316c146100f857806312aaac70146101235780631d381240146101c15780634eee424a14610228575b600080fd5b34801561010457600080fd5b5061010d610ac9565b6040518082815260200191505060405180910390f35b34801561012f57600080fd5b5061015c6004803603602081101561014657600080fd5b8101908080359060200190929190505050610ace565b6040518080602001848152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156101ab578082015181840152602081019050610190565b5050505090500194505050505060405180910390f35b3480156101cd57600080fd5b5061020e600480360360608110156101e457600080fd5b81019080803590602001909291908035906020019092919080359060200190929190505050610b76565b604051808215151515815260200191505060405180910390f35b34801561023457600080fd5b506102616004803603602081101561024b57600080fd5b8101908080359060200190929190505050610e5c565b604051808215151515815260200191505060405180910390f35b34801561028757600080fd5b506102be6004803603604081101561029e57600080fd5b81019080803590602001909291908035906020019092919050505061141a565b604051808215151515815260200191505060405180910390f35b3480156102e457600080fd5b5061031d600480360360408110156102fb57600080fd5b81019080803590602001909291908035151590602001909291905050506118fa565b604051808215151515815260200191505060405180910390f35b34801561034357600080fd5b5061034c611ef1565b6040518082815260200191505060405180910390f35b34801561036e57600080fd5b5061039b6004803603602081101561038557600080fd5b8101908080359060200190929190505050611ef6565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156103de5780820151818401526020810190506103c3565b505050509050019250505060405180910390f35b3480156103fe57600080fd5b5061042b6004803603602081101561041557600080fd5b8101908080359060200190929190505050611f61565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b8381101561046e578082015181840152602081019050610453565b505050509050019250505060405180910390f35b34801561048e57600080fd5b50610497611fcc565b6040518082815260200191505060405180910390f35b3480156104b957600080fd5b506106d5600480360360c08110156104d057600080fd5b810190808035906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561052157600080fd5b82018360208201111561053357600080fd5b8035906020019184600183028401116401000000008311171561055557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156105b857600080fd5b8201836020820111156105ca57600080fd5b803590602001918460018302840111640100000000831117156105ec57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561064f57600080fd5b82018360208201111561066157600080fd5b8035906020019184600183028401116401000000008311171561068357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611fd1565b6040518082815260200191505060405180910390f35b6107ce6004803603606081101561070157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561074857600080fd5b82018360208201111561075a57600080fd5b8035906020019184600183028401116401000000008311171561077c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612714565b6040518082815260200191505060405180910390f35b3480156107f057600080fd5b506107f9612994565b6040518082815260200191505060405180910390f35b34801561081b57600080fd5b506108486004803603602081101561083257600080fd5b8101908080359060200190929190505050612999565b604051808781526020018681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001806020018060200180602001848103845287818151815260200191508051906020019080838360005b838110156108ce5780820151818401526020810190506108b3565b50505050905090810190601f1680156108fb5780820380516001836020036101000a031916815260200191505b50848103835286818151815260200191508051906020019080838360005b83811015610934578082015181840152602081019050610919565b50505050905090810190601f1680156109615780820380516001836020036101000a031916815260200191505b50848103825285818151815260200191508051906020019080838360005b8381101561099a57808201518184015260208101905061097f565b50505050905090810190601f1680156109c75780820380516001836020036101000a031916815260200191505b50995050505050505050505060405180910390f35b3480156109e857600080fd5b50610a1f600480360360408110156109ff57600080fd5b810190808035906020019092919080359060200190929190505050612c33565b604051808215151515815260200191505060405180910390f35b348015610a4557600080fd5b50610a7260048036036020811015610a5c57600080fd5b8101908080359060200190929190505050612d4b565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610ab5578082015181840152602081019050610a9a565b505050509050019250505060405180910390f35b600181565b6060600080600160008581526020019081526020016000206000016001600086815260200190815260200160002060010154600160008781526020019081526020016000206002015482805480602002602001604051908101604052809291908181526020018280548015610b6257602002820191906000526020600020905b815481526020019060010190808311610b4e575b505050505092509250925092509193909250565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c5e57610c0833604051602001808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050604051602081830303815290604052805190602001206001612c33565b610c5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061302c6030913960400191505060405180910390fd5b5b8360016000868152602001908152602001600020600201541415610d7d5760008090505b6001600086815260200190815260200160002060000180549050811015610d3a576000600160008781526020019081526020016000206000018281548110610cc657fe5b9060005260206000200154905084811415610d2c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806130e36021913960400191505060405180910390fd5b508080600101915050610c82565b5060016000858152602001908152602001600020600001839080600181540180825580915050600190039060005260206000200160009091909190915055610de8565b83600160008681526020019081526020016000206002018190555060405180602001604052808481525060016000868152602001908152602001600020600001906001610dcb929190612db9565b508160016000868152602001908152602001600020600101819055505b600260008481526020019081526020016000208490806001815401808255809150506001900390600052602060002001600090919091909150558183857f480000bb1edad8ca1470381cc334b1917fbd51c6531f3a623ea8e0ec7e38a6e960405160405180910390a4600190509392505050565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f4457610eee33604051602001808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050604051602081830303815290604052805190602001206003612c33565b610f43576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b81526020018061308e602b913960400191505060405180910390fd5b5b600060046000848152602001908152602001600020600001541415610fb4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180613001602b913960400191505060405180910390fd5b60008090505b8260056000600460008781526020019081526020016000206000015481526020019081526020016000208281548110610fef57fe5b90600052602060002001541461100c578080600101915050610fba565b60056000600460008681526020019081526020016000206000015481526020019081526020016000206001600560006004600088815260200190815260200160002060000154815260200190815260200160002080549050038154811061106f57fe5b9060005260206000200154600560006004600087815260200190815260200160002060000154815260200190815260200160002082815481106110ae57fe5b906000526020600020018190555060056000600460008681526020019081526020016000206000015481526020019081526020016000208054806110ee57fe5b600190038181906000526020600020016000905590556004600084815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166004600085815260200190815260200160002060000154847f3cf57863a89432c61c4a27073c6ee39e8a764bff5a05aebfbcdcdc80b2e6130a600460008881526020019081526020016000206001015460046000898152602001908152602001600020600301600460008a8152602001908152602001600020600401600460008b81526020019081526020016000206005016040518085815260200180602001806020018060200184810384528781815460018160011615610100020316600290048152602001915080546001816001161561010002031660029004801561127a5780601f1061124f5761010080835404028352916020019161127a565b820191906000526020600020905b81548152906001019060200180831161125d57829003601f168201915b50508481038352868181546001816001161561010002031660029004815260200191508054600181600116156101000203166002900480156112fd5780601f106112d2576101008083540402835291602001916112fd565b820191906000526020600020905b8154815290600101906020018083116112e057829003601f168201915b50508481038252858181546001816001161561010002031660029004815260200191508054600181600116156101000203166002900480156113805780601f1061135557610100808354040283529160200191611380565b820191906000526020600020905b81548152906001019060200180831161136357829003601f168201915b505097505050505050505060405180910390a46004600084815260200190815260200160002060008082016000905560018201600090556002820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556003820160006113ee9190612e06565b6004820160006113fe9190612e06565b60058201600061140e9190612e4e565b50506001915050919050565b60008260016000858152602001908152602001600020600201541461148a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806131046021913960400191505060405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115705761151a33604051602001808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050604051602081830303815290604052805190602001206001612c33565b61156f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061302c6030913960400191505060405180910390fd5b5b60006001600085815260200190815260200160002060000180549050116115e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806130b9602a913960400191505060405180910390fd5b60008090505b8260016000868152602001908152602001600020600001828154811061160a57fe5b90600052602060002001541461164c578080600101915050600160008581526020019081526020016000206000018054905081106116475761164c565b6115e8565b600160008581526020019081526020016000206000018054905081106116bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806130b9602a913960400191505060405180910390fd5b6001600085815260200190815260200160002060000160018060008781526020019081526020016000206000018054905003815481106116f957fe5b906000526020600020015460016000868152602001908152602001600020600001828154811061172557fe5b90600052602060002001819055506001600085815260200190815260200160002060000180548061175257fe5b6001900381819060005260206000200160009055905560008090505b8460026000868152602001908152602001600020828154811061178d57fe5b9060005260206000200154146117aa57808060010191505061176e565b600260008581526020019081526020016000206001600260008781526020019081526020016000208054905003815481106117e157fe5b906000526020600020015460026000868152602001908152602001600020828154811061180a57fe5b90600052602060002001819055506002600085815260200190815260200160002080548061183457fe5b600190038181906000526020600020016000905590556000600160008781526020019081526020016000206001015490506000600160008881526020019081526020016000206000018054905014156118be5760016000878152602001908152602001600020600080820160006118ab9190612e96565b6001820160009055600282016000905550505b8085877f585a4aef50f8267a92b32412b331b20f7f8b96f2245b253b9cc50dcc621d339760405160405180910390a46001935050505092915050565b600061195933604051602001808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050604051602081830303815290604052805190602001206002612c33565b6119cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f53656e64657220646f6573206e6f74206861766520616374696f6e206b65790081525060200191505060405180910390fd5b827fb3932da477fe5d6c8ff2eafef050c0f3a1af18fc07121001482600f36f3715d883604051808215151515815260200191505060405180910390a2600115158215151415611eb75760016003600085815260200190815260200160002060030160006101000a81548160ff0219169083151502179055506003600084815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600360008581526020019081526020016000206001015460036000868152602001908152602001600020600201600060405160200180806020018360ff168152602001828103825284818154600181600116156101000203166002900481526020019150805460018160011615610100020316600290048015611b545780601f10611b2957610100808354040283529160200191611b54565b820191906000526020600020905b815481529060010190602001808311611b3757829003601f168201915b505093505050506040516020818303038152906040526040518082805190602001908083835b60208310611b9d5780518252602082019150602081019050602083039250611b7a565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611bff576040519150601f19603f3d011682016040523d82523d6000602084013e611c04565b606091505b5050809150508015611d7b5760016003600085815260200190815260200160002060030160016101000a81548160ff02191690831515021790555060036000848152602001908152602001600020600101546003600085815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16847f1f920dbda597d7bf95035464170fa58d0a4b57f13a1c315ace6793b9f63688b8600360008881526020019081526020016000206002016040518080602001828103825283818154600181600116156101000203166002900481526020019150805460018160011615610100020316600290048015611d645780601f10611d3957610100808354040283529160200191611d64565b820191906000526020600020905b815481529060010190602001808311611d4757829003601f168201915b50509250505060405180910390a460019050611eeb565b60036000848152602001908152602001600020600101546003600085815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16847fe10c49d9f7c71da23262367013434763cfdb2332267641728d25cd712c5c6a68600360008881526020019081526020016000206002016040518080602001828103825283818154600181600116156101000203166002900481526020019150805460018160011615610100020316600290048015611ea05780601f10611e7557610100808354040283529160200191611ea0565b820191906000526020600020905b815481529060010190602001808311611e8357829003601f168201915b50509250505060405180910390a460009050611eeb565b60006003600085815260200190815260200160002060030160006101000a81548160ff021916908315150217905550600190505b92915050565b600281565b606060056000838152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015611f5557602002820191906000526020600020905b815481526020019060010190808311611f41575b50505050509050919050565b606060026000838152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015611fc057602002820191906000526020600020905b815481526020019060010190808311611fac575b50505050509050919050565b600481565b6000808588604051602001808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001828152602001925050506040516020818303038152906040528051906020012090503073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612117576120c133604051602001808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050604051602081830303815290604052805190602001206003612c33565b612116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603281526020018061305c6032913960400191505060405180910390fd5b5b8573ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124625760056000898152602001908152602001600020819080600181540180825580915050600190039060005260206000200160009091909190915055876004600083815260200190815260200160002060000181905550866004600083815260200190815260200160002060010181905550856004600083815260200190815260200160002060020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508460046000838152602001908152602001600020600301908051906020019061226f929190612eb7565b508360046000838152602001908152602001600020600401908051906020019061229a929190612eb7565b50826004600083815260200190815260200160002060050190805190602001906122c5929190612f37565b508573ffffffffffffffffffffffffffffffffffffffff1688827f46149b18aa084502c3f12bc75e19eda8bda8d102b82cce8474677a6d0d5f43c58a89898960405180858152602001806020018060200180602001848103845287818151815260200191508051906020019080838360005b83811015612352578082015181840152602081019050612337565b50505050905090810190601f16801561237f5780820380516001836020036101000a031916815260200191505b50848103835286818151815260200191508051906020019080838360005b838110156123b857808201518184015260208101905061239d565b50505050905090810190601f1680156123e55780820380516001836020036101000a031916815260200191505b50848103825285818151815260200191508051906020019080838360005b8381101561241e578082015181840152602081019050612403565b50505050905090810190601f16801561244b5780820380516001836020036101000a031916815260200191505b5097505050505050505060405180910390a4612706565b876004600083815260200190815260200160002060000181905550866004600083815260200190815260200160002060010181905550856004600083815260200190815260200160002060020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084600460008381526020019081526020016000206003019080519060200190612517929190612eb7565b5083600460008381526020019081526020016000206004019080519060200190612542929190612eb7565b508260046000838152602001908152602001600020600501908051906020019061256d929190612f37565b508573ffffffffffffffffffffffffffffffffffffffff1688827f3bab293fc00db832d7619a9299914251b8747c036867ec056cbd506f60135b138a89898960405180858152602001806020018060200180602001848103845287818151815260200191508051906020019080838360005b838110156125fa5780820151818401526020810190506125df565b50505050905090810190601f1680156126275780820380516001836020036101000a031916815260200191505b50848103835286818151815260200191508051906020019080838360005b83811015612660578082015181840152602081019050612645565b50505050905090810190601f16801561268d5780820380516001836020036101000a031916815260200191505b50848103825285818151815260200191508051906020019080838360005b838110156126c65780820151818401526020810190506126ab565b50505050905090810190601f1680156126f35780820380516001836020036101000a031916815260200191505b5097505050505050505060405180910390a45b809150509695505050505050565b6000600360008054815260200190815260200160002060030160019054906101000a900460ff16156127ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f416c72656164792065786563757465640000000000000000000000000000000081525060200191505060405180910390fd5b83600360008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600360008054815260200190815260200160002060010181905550816003600080548152602001908152602001600020600201908051906020019061284b929190612eb7565b50828473ffffffffffffffffffffffffffffffffffffffff166000547f8afcfabcb00e47a53a8fc3e9f23ff47ee1926194bb1350dd007c50b412a6cee8856040518080602001828103825283818151815260200191508051906020019080838360005b838110156128c95780820151818401526020810190506128ae565b50505050905090810190601f1680156128f65780820380516001836020036101000a031916815260200191505b509250505060405180910390a461296033604051602001808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050604051602081830303815290604052805190602001206002612c33565b156129745761297260005460016118fa565b505b600080815480929190600101919050555060016000540390509392505050565b600381565b6000806000606080606060046000888152602001908152602001600020600001546004600089815260200190815260200160002060010154600460008a815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600460008b8152602001908152602001600020600301600460008c8152602001908152602001600020600401600460008d8152602001908152602001600020600501828054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612adf5780601f10612ab457610100808354040283529160200191612adf565b820191906000526020600020905b815481529060010190602001808311612ac257829003601f168201915b50505050509250818054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612b7b5780601f10612b5057610100808354040283529160200191612b7b565b820191906000526020600020905b815481529060010190602001808311612b5e57829003601f168201915b50505050509150808054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612c175780601f10612bec57610100808354040283529160200191612c17565b820191906000526020600020905b815481529060010190602001808311612bfa57829003601f168201915b5050505050905095509550955095509550955091939550919395565b6000612c3d612fb7565b6001600085815260200190815260200160002060405180606001604052908160008201805480602002602001604051908101604052809291908181526020018280548015612caa57602002820191906000526020600020905b815481526020019060010190808311612c96575b505050505081526020016001820154815260200160028201548152505090506000801b81604001511415612ce2576000915050612d45565b60008090505b816000015151811015612d3e57600082600001518281518110612d0757fe5b602002602001015190506001811480612d1f57508481145b15612d305760019350505050612d45565b508080600101915050612ce8565b5060009150505b92915050565b606060016000838152602001908152602001600020600001805480602002602001604051908101604052809291908181526020018280548015612dad57602002820191906000526020600020905b815481526020019060010190808311612d99575b50505050509050919050565b828054828255906000526020600020908101928215612df5579160200282015b82811115612df4578251825591602001919060010190612dd9565b5b509050612e029190612fdb565b5090565b50805460018160011615610100020316600290046000825580601f10612e2c5750612e4b565b601f016020900490600052602060002090810190612e4a9190612fdb565b5b50565b50805460018160011615610100020316600290046000825580601f10612e745750612e93565b601f016020900490600052602060002090810190612e929190612fdb565b5b50565b5080546000825590600052602060002090810190612eb49190612fdb565b50565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612ef857805160ff1916838001178555612f26565b82800160010185558215612f26579182015b82811115612f25578251825591602001919060010190612f0a565b5b509050612f339190612fdb565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612f7857805160ff1916838001178555612fa6565b82800160010185558215612fa6579182015b82811115612fa5578251825591602001919060010190612f8a565b5b509050612fb39190612fdb565b5090565b60405180606001604052806060815260200160008152602001600080191681525090565b612ffd91905b80821115612ff9576000816000905550600101612fe1565b5090565b9056fe4e6f6e4578697374696e673a205468657265206973206e6f20636c61696d207769746820746869732049445065726d697373696f6e733a2053656e64657220646f6573206e6f742068617665206d616e6167656d656e74206b65795065726d697373696f6e733a2053656e64657220646f6573206e6f74206861766520636c61696d207369676e6572206b65795065726d697373696f6e733a2053656e64657220646f6573206e6f74206861766520434c41494d206b65794e6f6e4578697374696e673a204b657920646f65736e27742068617665207375636820707572706f7365436f6e666c6963743a204b657920616c72656164792068617320707572706f73654e6f6e4578697374696e673a204b65792069736e27742072656769737465726564a2646970667358221220d0c562dc6c7c64ba538d675621905f850ceff502f7d4f4509a131e5ffa5bd95c64736f6c63430006020033

Deployed Bytecode Sourcemap

211:6387:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;154:42:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;154:42:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1508:217;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1508:217:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1508:217:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;1508:217:0;;;;;;;;;;;;;;;;;;;3793:977;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3793:977:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3793:977:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3512:1064:5;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3512:1064:5;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3512:1064:5;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;6525:1444:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6525:1444:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6525:1444:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4776:1119;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4776:1119:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4776:1119:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;202:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;202:38:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6431:165:5;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6431:165:5;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6431:165:5;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;6431:165:5;;;;;;;;;;;;;;;;;2482:164:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2482:164:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2482:164:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;2482:164:0;;;;;;;;;;;;;;;;;296:42;;8:9:-1;5:2;;;30:1;27;20:12;5:2;296:42:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1446:1632:5;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1446:1632:5;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;1446:1632:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;1446:1632:5;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;1446:1632:5;;;;;;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;1446:1632:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;1446:1632:5;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;1446:1632:5;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;1446:1632:5;;;;;;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;1446:1632:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;1446:1632:5;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;1446:1632:5;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;1446:1632:5;;;;;;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;1446:1632:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;1446:1632:5;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5901:618:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;5901:618:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;5901:618:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;5901:618: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;5901:618:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;5901:618:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;246:44;;8:9:-1;5:2;;;30:1;27;20:12;5:2;246:44:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5595:501:5;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5595:501:5;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;5595:501:5;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;5595:501:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;5595:501:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;5595:501:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8078:475:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8078:475:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8078:475:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;1961:160;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1961:160:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1961:160:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;1961:160:0;;;;;;;;;;;;;;;;;154:42;195:1;154:42;:::o;1508:217::-;1583:25;1610:15;1627:11;1662:4;:10;1667:4;1662:10;;;;;;;;;;;:19;;1683:4;:10;1688:4;1683:10;;;;;;;;;;;:18;;;1703:4;:10;1708:4;1703:10;;;;;;;;;;;:14;;;1654:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1508:217;;;;;:::o;3793:977::-;3893:12;3947:4;3925:27;;:10;:27;;;3921:170;;3976:51;4011:10;4000:22;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;4000:22:0;;;3990:33;;;;;;4025:1;3976:13;:51::i;:::-;3968:112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3921:170;4123:4;4105;:10;4110:4;4105:10;;;;;;;;;;;:14;;;:22;4101:549;;;4148:20;4171:1;4148:24;;4143:310;4192:4;:10;4197:4;4192:10;;;;;;;;;;;:19;;:26;;;;4174:15;:44;4143:310;;;4257:15;4275:4;:10;4280:4;4275:10;;;;;;;;;;;:19;;4295:15;4275:36;;;;;;;;;;;;;;;;4257:54;;4345:8;4334:7;:19;4330:109;;;4377:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4330:109;4143:310;4220:17;;;;;;;4143:310;;;;4467:4;:10;4472:4;4467:10;;;;;;;;;;;:19;;4492:8;4467:34;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;4467:34:0;;;;;;;;;;;;;;;;;;;4101:549;;;4549:4;4532;:10;4537:4;4532:10;;;;;;;;;;;:14;;:21;;;;4567:32;;;;;;;;4590:8;4567:32;;;:4;:10;4572:4;4567:10;;;;;;;;;;;:19;;:32;;;;;;;:::i;:::-;;4634:5;4613:4;:10;4618:4;4613:10;;;;;;;;;;;:18;;:26;;;;4101:549;4660:13;:23;4674:8;4660:23;;;;;;;;;;;4689:4;4660:34;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;4660:34:0;;;;;;;;;;;;;;;;;;;4735:5;4725:8;4719:4;4710:31;;;;;;;;;;4759:4;4752:11;;3793:977;;;;;:::o;3512:1064:5:-;3576:12;3626:4;3604:27;;:10;:27;;;3600:165;;3655:51;3690:10;3679:22;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;3679:22:5;;;3669:33;;;;;;3704:1;3655:13;:51::i;:::-;3647:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3600:165;3805:1;3779:6;:16;3786:8;3779:16;;;;;;;;;;;:22;;;:27;3775:111;;;3822:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3775:111;3896:15;3914:1;3896:19;;3925:107;3985:8;3932:13;:37;3946:6;:16;3953:8;3946:16;;;;;;;;;;;:22;;;3932:37;;;;;;;;;;;3970:10;3932:49;;;;;;;;;;;;;;;;:61;3925:107;;4009:12;;;;;;;3925:107;;;4094:13;:37;4108:6;:16;4115:8;4108:16;;;;;;;;;;;:22;;;4094:37;;;;;;;;;;;4179:1;4132:13;:37;4146:6;:16;4153:8;4146:16;;;;;;;;;;;:22;;;4132:37;;;;;;;;;;;:44;;;;:48;4094:87;;;;;;;;;;;;;;;;4042:13;:37;4056:6;:16;4063:8;4056:16;;;;;;;;;;;:22;;;4042:37;;;;;;;;;;;4080:10;4042:49;;;;;;;;;;;;;;;:139;;;;4191:13;:37;4205:6;:16;4212:8;4205:16;;;;;;;;;;;:22;;;4191:37;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;;;;;;;4371:6;:16;4378:8;4371:16;;;;;;;;;;;:23;;;;;;;;;;;;4250:263;;4298:6;:16;4305:8;4298:16;;;;;;;;;;;:22;;;4276:8;4250:263;4334:6;:16;4341:8;4334:16;;;;;;;;;;;:23;;;4408:6;:16;4415:8;4408:16;;;;;;;;;;;:26;;4448:6;:16;4455:8;4448:16;;;;;;;;;;;:21;;4483:6;:16;4490:8;4483:16;;;;;;;;;;;:20;;4250:263;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4531:6;:16;4538:8;4531:16;;;;;;;;;;;;4524:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;4565:4;4558:11;;;3512:1064;;;:::o;6525:1444:0:-;6613:12;6667:4;6649;:10;6654:4;6649:10;;;;;;;;;;;:14;;;:22;6641:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6746:4;6724:27;;:10;:27;;;6720:199;;6775:51;6810:10;6799:22;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;6799:22:0;;;6789:33;;;;;;6824:1;6775:13;:51::i;:::-;6767:112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6720:199;6966:1;6937:4;:10;6942:4;6937:10;;;;;;;;;;;:19;;:26;;;;:30;6929:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7025:17;7045:1;7025:21;;7056:193;7100:8;7063:4;:10;7068:4;7063:10;;;;;;;;;;;:19;;7083:12;7063:33;;;;;;;;;;;;;;;;:45;7056:193;;7124:14;;;;;;;7173:4;:10;7178:4;7173:10;;;;;;;;;;;:19;;:26;;;;7157:12;:42;7153:86;;7219:5;;7153:86;7056:193;;;7282:4;:10;7287:4;7282:10;;;;;;;;;;;:19;;:26;;;;7267:12;:41;7259:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7402:4;:10;7407:4;7402:10;;;;;;;;;;;:19;;7451:1;7422:4;:10;7427:4;7422:10;;;;;;;;;;;:19;;:26;;;;:30;7402:51;;;;;;;;;;;;;;;;7366:4;:10;7371:4;7366:10;;;;;;;;;;;:19;;7386:12;7366:33;;;;;;;;;;;;;;;:87;;;;7463:4;:10;7468:4;7463:10;;;;;;;;;;;:19;;:25;;;;;;;;;;;;;;;;;;;;;;;;7499:13;7515:1;7499:17;;7527:85;7571:4;7534:13;:23;7548:8;7534:23;;;;;;;;;;;7558:8;7534:33;;;;;;;;;;;;;;;;:41;7527:85;;7591:10;;;;;;;7527:85;;;7658:13;:23;7672:8;7658:23;;;;;;;;;;;7715:1;7682:13;:23;7696:8;7682:23;;;;;;;;;;;:30;;;;:34;7658:59;;;;;;;;;;;;;;;;7622:13;:23;7636:8;7622:23;;;;;;;;;;;7646:8;7622:33;;;;;;;;;;;;;;;:95;;;;7727:13;:23;7741:8;7727:23;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;;;;;;;7767:12;7782:4;:10;7787:4;7782:10;;;;;;;;;;;:18;;;7767:33;;7845:1;7815:4;:10;7820:4;7815:10;;;;;;;;;;;:19;;:26;;;;:31;7811:79;;;7869:4;:10;7874:4;7869:10;;;;;;;;;;;;7862:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;7811:79;7932:7;7922:8;7916:4;7905:35;;;;;;;;;;7958:4;7951:11;;;;;6525:1444;;;;:::o;4776:1119::-;4858:12;4894:51;4929:10;4918:22;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;4918:22:0;;;4908:33;;;;;;4943:1;4894:13;:51::i;:::-;4886:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5006:3;4997:23;5011:8;4997:23;;;;;;;;;;;;;;;;;;;;;;5047:4;5035:16;;:8;:16;;;5031:837;;;5094:4;5067:10;:15;5078:3;5067:15;;;;;;;;;;;:24;;;:31;;;;;;;;;;;;;;;;;;5126:10;:15;5137:3;5126:15;;;;;;;;;;;:18;;;;;;;;;;;;:23;;5156:10;:15;5167:3;5156:15;;;;;;;;;;;:21;;;5190:10;:15;5201:3;5190:15;;;;;;;;;;;:20;;5212:1;5179:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;5179:35:0;;;5126:89;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;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;;;5126:89:0;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;5113:102:0;;;;;5234:7;5230:565;;;5288:4;5261:10;:15;5272:3;5261:15;;;;;;;;;;;:24;;;:31;;;;;;;;;;;;;;;;;;5411:10;:15;5422:3;5411:15;;;;;;;;;;;:21;;;5371:10;:15;5382:3;5371:15;;;;;;;;;;;:18;;;;;;;;;;;;5316:176;;5346:3;5316:176;5454:10;:15;5465:3;5454:15;;;;;;;;;;;:20;;5316:176;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5518:4;5511:11;;;;5230:565;5668:10;:15;5679:3;5668:15;;;;;;;;;;;:21;;;5628:10;:15;5639:3;5628:15;;;;;;;;;;;:18;;;;;;;;;;;;5566:183;;5603:3;5566:183;5711:10;:15;5722:3;5711:15;;;;;;;;;;;:20;;5566:183;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5775:5;5768:12;;;;5031:837;5852:5;5825:10;:15;5836:3;5825:15;;;;;;;;;;;:24;;;:32;;;;;;;;;;;;;;;;;;5884:4;5877:11;;4776:1119;;;;;:::o;202:38::-;239:1;202:38;:::o;6431:165:5:-;6520:25;6568:13;:21;6582:6;6568:21;;;;;;;;;;;6561:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6431:165;;;:::o;2482:164:0:-;2571:22;2616:13;:23;2630:8;2616:23;;;;;;;;;;;2609:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2482:164;;;:::o;296:42::-;337:1;296:42;:::o;1446:1632:5:-;1670:22;1708:15;1747:7;1756:6;1736:27;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;1736:27:5;;;1726:38;;;;;;1708:56;;1801:4;1779:27;;:10;:27;;;1775:172;;1830:51;1865:10;1854:22;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;1854:22:5;;;1844:33;;;;;;1879:1;1830:13;:51::i;:::-;1822:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1775:172;1987:7;1961:33;;:6;:15;1968:7;1961:15;;;;;;;;;;;:22;;;;;;;;;;;;:33;;;1957:1090;;2010:13;:21;2024:6;2010:21;;;;;;;;;;;2037:7;2010:35;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;2010:35:5;;;;;;;;;;;;;;;;;;;2083:6;2059;:15;2066:7;2059:15;;;;;;;;;;;:21;;:30;;;;2128:7;2103:6;:15;2110:7;2103:15;;;;;;;;;;;:22;;:32;;;;2174:7;2149:6;:15;2156:7;2149:15;;;;;;;;;;;:22;;;:32;;;;;;;;;;;;;;;;;;2223:10;2195:6;:15;2202:7;2195:15;;;;;;;;;;;:25;;:38;;;;;;;;;;;;:::i;:::-;;2270:5;2247:6;:15;2254:7;2247:15;;;;;;;;;;;:20;;:28;;;;;;;;;;;;:::i;:::-;;2311:4;2289:6;:15;2296:7;2289:15;;;;;;;;;;;:19;;:26;;;;;;;;;;;;:::i;:::-;;2437:7;2335:196;;2388:6;2363:7;2335:196;2412:7;2462:10;2490:5;2513:4;2335:196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;2335:196:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;2335:196:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;2335:196:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957:1090;;;2586:6;2562;:15;2569:7;2562:15;;;;;;;;;;;:21;;:30;;;;2631:7;2606:6;:15;2613:7;2606:15;;;;;;;;;;;:22;;:32;;;;2677:7;2652:6;:15;2659:7;2652:15;;;;;;;;;;;:22;;;:32;;;;;;;;;;;;;;;;;;2726:10;2698:6;:15;2705:7;2698:15;;;;;;;;;;;:25;;:38;;;;;;;;;;;;:::i;:::-;;2773:5;2750:6;:15;2757:7;2750:15;;;;;;;;;;;:20;;:28;;;;;;;;;;;;:::i;:::-;;2814:4;2792:6;:15;2799:7;2792:15;;;;;;;;;;;:19;;:26;;;;;;;;;;;;:::i;:::-;;2942:7;2838:198;;2893:6;2868:7;2838:198;2917:7;2967:10;2995:5;3018:4;2838:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;2838:198:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;2838:198:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;2838:198:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1957:1090;3064:7;3057:14;;;1446:1632;;;;;;;;:::o;5901:618:0:-;6016:19;6060:10;:26;6071:14;;6060:26;;;;;;;;;;;:35;;;;;;;;;;;;6059:36;6051:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6158:3;6126:10;:26;6137:14;;6126:26;;;;;;;;;;;:29;;;:35;;;;;;;;;;;;;;;;;;6206:6;6171:10;:26;6182:14;;6171:26;;;;;;;;;;;:32;;:41;;;;6256:5;6222:10;:26;6233:14;;6222:26;;;;;;;;;;;:31;;:39;;;;;;;;;;;;:::i;:::-;;6317:6;6312:3;6277:54;;6296:14;;6277:54;6325:5;6277:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;6277:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6346:51;6381:10;6370:22;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;6370:22:0;;;6360:33;;;;;;6395:1;6346:13;:51::i;:::-;6342:111;;;6413:29;6421:14;;6437:4;6413:7;:29::i;:::-;;6342:111;6463:14;;:16;;;;;;;;;;;;;6511:1;6496:14;;:16;6489:23;;5901:618;;;;;:::o;246:44::-;289:1;246:44;:::o;5595:501:5:-;5685:13;5708:14;5732;5756:22;5788:17;5815;5874:6;:16;5881:8;5874:16;;;;;;;;;;;:22;;;5910:6;:16;5917:8;5910:16;;;;;;;;;;;:23;;;5947:6;:16;5954:8;5947:16;;;;;;;;;;;:23;;;;;;;;;;;;5984:6;:16;5991:8;5984:16;;;;;;;;;;;:26;;6024:6;:16;6031:8;6024:16;;;;;;;;;;;:21;;6059:6;:16;6066:8;6059:16;;;;;;;;;;;:20;;5853:236;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5595:501;;;;;;;:::o;8078:475:0:-;8178:11;8205:14;;:::i;:::-;8222:4;:10;8227:4;8222:10;;;;;;;;;;;8205:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8257:1;8246:12;;:3;:7;;;:12;8242:30;;;8267:5;8260:12;;;;;8242:30;8288:20;8311:1;8288:24;;8283:241;8332:3;:12;;;:19;8314:15;:37;8283:241;;;8386:15;8404:3;:12;;;8417:15;8404:29;;;;;;;;;;;;;;8386:47;;195:1;8452:7;:25;:48;;;;8492:8;8481:7;:19;8452:48;8448:65;;;8509:4;8502:11;;;;;;;8448:65;8283:241;8353:17;;;;;;;8283:241;;;;8541:5;8534:12;;;8078:475;;;;;:::o;1961:160::-;2044:26;2094:4;:10;2099:4;2094:10;;;;;;;;;;;:19;;2086:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1961:160;;;:::o;211:6387:5:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

ipfs://d0c562dc6c7c64ba538d675621905f850ceff502f7d4f4509a131e5ffa5bd95c

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.