├── .gitignore ├── LICENSE ├── README.md ├── data ├── companies.json ├── geography.json └── sectors.json ├── raw ├── companies.csv ├── geo.csv └── sectors.json └── scripts ├── companies.py ├── geography.py └── sectors.py /.gitignore: -------------------------------------------------------------------------------- 1 | config.yml 2 | __pycache__ 3 | exports 4 | build 5 | dist 6 | pycti.egg-info 7 | logs 8 | test.py 9 | .idea 10 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # OpenCTI datasets 2 | 3 | [![Website](https://img.shields.io/badge/website-opencti.io-blue.svg)](https://www.opencti.io) 4 | [![Slack Status](https://img.shields.io/badge/slack-3K%2B%20members-4A154B)](https://community.filigran.io) 5 | 6 | The following repository is used to store the OpenCTI data samples used by the OpenCTI connectors for synchronize catalogs of sectors, regions and countries. 7 | 8 | ## About 9 | 10 | OpenCTI is a product designed and developed by the company [Filigran](https://filigran.io). 11 | 12 | -------------------------------------------------------------------------------- /data/companies.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "bundle", 3 | "id": "bundle--3d7e2db9-9b74-4c1b-a3a3-71f94cc3588c", 4 | "objects": [ 5 | { 6 | "type": "identity", 7 | "spec_version": "2.1", 8 | "id": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 9 | "created": "2023-11-19T01:02:21.547893Z", 10 | "modified": "2023-11-19T01:02:21.547893Z", 11 | "name": "Filigran", 12 | "description": "Filigran is a cybertech founded in 2022, providing cyber threat intelligence, adversary simulation and crisis management solutions to cybersecurity teams across the world.", 13 | "identity_class": "organization", 14 | "revoked": false, 15 | "confidence": 100, 16 | "object_marking_refs": [ 17 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 18 | ], 19 | "x_opencti_organization_type": "vendor" 20 | }, 21 | { 22 | "type": "identity", 23 | "spec_version": "2.1", 24 | "id": "identity--ecacca66-1a61-4457-b29d-8b2d8f50d504", 25 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 26 | "created": "2022-01-22T19:05:28.308781Z", 27 | "modified": "2023-11-19T01:02:21.550462Z", 28 | "name": "Fireeye", 29 | "description": "", 30 | "identity_class": "organization", 31 | "revoked": false, 32 | "contact_information": "fireeye.com", 33 | "confidence": 100, 34 | "object_marking_refs": [ 35 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 36 | ], 37 | "x_opencti_organization_type": "" 38 | }, 39 | { 40 | "type": "relationship", 41 | "spec_version": "2.1", 42 | "id": "relationship--14c2fc4d-bf44-408a-8e9d-8315670dac85", 43 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 44 | "created": "2022-01-22T19:05:28.309365Z", 45 | "modified": "2023-11-19T01:02:21.550462Z", 46 | "relationship_type": "part-of", 47 | "description": "Company 'Fireeye' is part of sector 'Technologies'", 48 | "source_ref": "identity--ecacca66-1a61-4457-b29d-8b2d8f50d504", 49 | "revoked": false, 50 | "target_ref": "identity--84c3a483-2048-40d4-8d8f-5e57ff35da9c", 51 | "confidence": 100, 52 | "object_marking_refs": [ 53 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 54 | ] 55 | }, 56 | { 57 | "type": "identity", 58 | "spec_version": "2.1", 59 | "id": "identity--ed4acdcb-799a-4147-aa62-ddd99a20b774", 60 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 61 | "created": "2022-01-22T19:05:28.309613Z", 62 | "modified": "2023-11-19T01:02:21.550462Z", 63 | "name": "Mandiant", 64 | "description": "", 65 | "identity_class": "organization", 66 | "revoked": false, 67 | "contact_information": "mandiant.com", 68 | "confidence": 100, 69 | "object_marking_refs": [ 70 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 71 | ], 72 | "x_opencti_organization_type": "" 73 | }, 74 | { 75 | "type": "relationship", 76 | "spec_version": "2.1", 77 | "id": "relationship--2696ac9d-38bf-4e76-b507-1ade3a088149", 78 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 79 | "created": "2022-01-22T19:05:28.309857Z", 80 | "modified": "2023-11-19T01:02:21.550462Z", 81 | "relationship_type": "part-of", 82 | "description": "Company 'Mandiant' is part of sector 'Technologies'", 83 | "source_ref": "identity--ed4acdcb-799a-4147-aa62-ddd99a20b774", 84 | "revoked": false, 85 | "target_ref": "identity--84c3a483-2048-40d4-8d8f-5e57ff35da9c", 86 | "confidence": 100, 87 | "object_marking_refs": [ 88 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 89 | ] 90 | }, 91 | { 92 | "type": "identity", 93 | "spec_version": "2.1", 94 | "id": "identity--744f61df-c40f-4d11-b433-7f92984c25d2", 95 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 96 | "created": "2022-01-22T19:05:28.310094Z", 97 | "modified": "2023-11-19T01:02:21.550982Z", 98 | "name": "Crowdstrike", 99 | "description": "", 100 | "identity_class": "organization", 101 | "revoked": false, 102 | "contact_information": "crowdstrike.com", 103 | "confidence": 100, 104 | "object_marking_refs": [ 105 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 106 | ], 107 | "x_opencti_organization_type": "" 108 | }, 109 | { 110 | "type": "relationship", 111 | "spec_version": "2.1", 112 | "id": "relationship--95ecfa4f-0cfd-4ddf-938b-f682f5143419", 113 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 114 | "created": "2022-01-22T19:05:28.310334Z", 115 | "modified": "2023-11-19T01:02:21.550982Z", 116 | "relationship_type": "part-of", 117 | "description": "Company 'Crowdstrike' is part of sector 'Technologies'", 118 | "source_ref": "identity--744f61df-c40f-4d11-b433-7f92984c25d2", 119 | "revoked": false, 120 | "target_ref": "identity--84c3a483-2048-40d4-8d8f-5e57ff35da9c", 121 | "confidence": 100, 122 | "object_marking_refs": [ 123 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 124 | ] 125 | }, 126 | { 127 | "type": "identity", 128 | "spec_version": "2.1", 129 | "id": "identity--4a93bb23-9f77-46b0-aac9-2f8eee8adb30", 130 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 131 | "created": "2022-01-22T19:05:28.310559Z", 132 | "modified": "2023-11-19T01:02:21.550982Z", 133 | "name": "BAE Systems", 134 | "description": "", 135 | "identity_class": "organization", 136 | "revoked": false, 137 | "contact_information": "baesystems.com", 138 | "confidence": 100, 139 | "object_marking_refs": [ 140 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 141 | ], 142 | "x_opencti_organization_type": "" 143 | }, 144 | { 145 | "type": "relationship", 146 | "spec_version": "2.1", 147 | "id": "relationship--2f0167d0-1783-4cd4-9d5e-18924926353f", 148 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 149 | "created": "2022-01-22T19:05:28.310795Z", 150 | "modified": "2023-11-19T01:02:21.550982Z", 151 | "relationship_type": "part-of", 152 | "description": "Company 'BAE Systems' is part of sector 'Technologies'", 153 | "source_ref": "identity--4a93bb23-9f77-46b0-aac9-2f8eee8adb30", 154 | "revoked": false, 155 | "target_ref": "identity--84c3a483-2048-40d4-8d8f-5e57ff35da9c", 156 | "confidence": 100, 157 | "object_marking_refs": [ 158 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 159 | ] 160 | }, 161 | { 162 | "type": "identity", 163 | "spec_version": "2.1", 164 | "id": "identity--45adddca-2d0f-4508-8a96-54a0188dcb06", 165 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 166 | "created": "2022-01-22T19:05:28.311013Z", 167 | "modified": "2023-11-19T01:02:21.551504Z", 168 | "name": "ESET", 169 | "description": "", 170 | "identity_class": "organization", 171 | "revoked": false, 172 | "contact_information": "eset.com", 173 | "confidence": 100, 174 | "object_marking_refs": [ 175 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 176 | ], 177 | "x_opencti_organization_type": "" 178 | }, 179 | { 180 | "type": "relationship", 181 | "spec_version": "2.1", 182 | "id": "relationship--adf14225-7ad8-4ec6-96d9-a36db991b69d", 183 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 184 | "created": "2022-01-22T19:05:28.31128Z", 185 | "modified": "2023-11-19T01:02:21.551504Z", 186 | "relationship_type": "part-of", 187 | "description": "Company 'ESET' is part of sector 'Technologies'", 188 | "source_ref": "identity--45adddca-2d0f-4508-8a96-54a0188dcb06", 189 | "revoked": false, 190 | "target_ref": "identity--84c3a483-2048-40d4-8d8f-5e57ff35da9c", 191 | "confidence": 100, 192 | "object_marking_refs": [ 193 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 194 | ] 195 | }, 196 | { 197 | "type": "identity", 198 | "spec_version": "2.1", 199 | "id": "identity--df214b6e-234a-4efb-9c14-722cb0f082e5", 200 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 201 | "created": "2022-01-22T19:05:28.311496Z", 202 | "modified": "2023-11-19T01:02:21.551504Z", 203 | "name": "McAfee", 204 | "description": "", 205 | "identity_class": "organization", 206 | "revoked": false, 207 | "contact_information": "mcafee.com", 208 | "confidence": 100, 209 | "object_marking_refs": [ 210 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 211 | ], 212 | "x_opencti_organization_type": "" 213 | }, 214 | { 215 | "type": "relationship", 216 | "spec_version": "2.1", 217 | "id": "relationship--4457161d-4723-483b-aaa2-6659de949574", 218 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 219 | "created": "2022-01-22T19:05:28.311725Z", 220 | "modified": "2023-11-19T01:02:21.551504Z", 221 | "relationship_type": "part-of", 222 | "description": "Company 'McAfee' is part of sector 'Technologies'", 223 | "source_ref": "identity--df214b6e-234a-4efb-9c14-722cb0f082e5", 224 | "revoked": false, 225 | "target_ref": "identity--84c3a483-2048-40d4-8d8f-5e57ff35da9c", 226 | "confidence": 100, 227 | "object_marking_refs": [ 228 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 229 | ] 230 | }, 231 | { 232 | "type": "identity", 233 | "spec_version": "2.1", 234 | "id": "identity--eccb091d-7203-4a0d-a22b-0ee99bcf2146", 235 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 236 | "created": "2022-01-22T19:05:28.31194Z", 237 | "modified": "2023-11-19T01:02:21.551504Z", 238 | "name": "Symantec", 239 | "description": "", 240 | "identity_class": "organization", 241 | "revoked": false, 242 | "contact_information": "symantec.com", 243 | "confidence": 100, 244 | "object_marking_refs": [ 245 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 246 | ], 247 | "x_opencti_organization_type": "" 248 | }, 249 | { 250 | "type": "relationship", 251 | "spec_version": "2.1", 252 | "id": "relationship--ceee09d5-da19-447c-8417-8dca5c532fe2", 253 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 254 | "created": "2022-01-22T19:05:28.312175Z", 255 | "modified": "2023-11-19T01:02:21.552029Z", 256 | "relationship_type": "part-of", 257 | "description": "Company 'Symantec' is part of sector 'Technologies'", 258 | "source_ref": "identity--eccb091d-7203-4a0d-a22b-0ee99bcf2146", 259 | "revoked": false, 260 | "target_ref": "identity--84c3a483-2048-40d4-8d8f-5e57ff35da9c", 261 | "confidence": 100, 262 | "object_marking_refs": [ 263 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 264 | ] 265 | }, 266 | { 267 | "type": "identity", 268 | "spec_version": "2.1", 269 | "id": "identity--b1bc8980-e51d-4782-a2d6-16339d146bf7", 270 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 271 | "created": "2022-01-22T19:05:28.312487Z", 272 | "modified": "2023-11-19T01:02:21.552029Z", 273 | "name": "Checkpoint", 274 | "description": "", 275 | "identity_class": "organization", 276 | "revoked": false, 277 | "contact_information": "checkpoint.com", 278 | "confidence": 100, 279 | "object_marking_refs": [ 280 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 281 | ], 282 | "x_opencti_organization_type": "" 283 | }, 284 | { 285 | "type": "relationship", 286 | "spec_version": "2.1", 287 | "id": "relationship--3d78373d-2b69-4f44-b9db-00a57f04bbe7", 288 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 289 | "created": "2022-01-22T19:05:28.31272Z", 290 | "modified": "2023-11-19T01:02:21.552029Z", 291 | "relationship_type": "part-of", 292 | "description": "Company 'Checkpoint' is part of sector 'Technologies'", 293 | "source_ref": "identity--b1bc8980-e51d-4782-a2d6-16339d146bf7", 294 | "revoked": false, 295 | "target_ref": "identity--84c3a483-2048-40d4-8d8f-5e57ff35da9c", 296 | "confidence": 100, 297 | "object_marking_refs": [ 298 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 299 | ] 300 | }, 301 | { 302 | "type": "identity", 303 | "spec_version": "2.1", 304 | "id": "identity--4e121c7f-b5be-478d-ab4f-87f38743fcdf", 305 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 306 | "created": "2022-01-22T19:05:28.312936Z", 307 | "modified": "2023-11-19T01:02:21.552029Z", 308 | "name": "Kaspersky", 309 | "description": "", 310 | "identity_class": "organization", 311 | "revoked": false, 312 | "contact_information": "kaspersky.com", 313 | "confidence": 100, 314 | "object_marking_refs": [ 315 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 316 | ], 317 | "x_opencti_organization_type": "" 318 | }, 319 | { 320 | "type": "relationship", 321 | "spec_version": "2.1", 322 | "id": "relationship--c861e824-78fa-44bc-bdfd-25e3d46bc4f1", 323 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 324 | "created": "2022-01-22T19:05:28.313164Z", 325 | "modified": "2023-11-19T01:02:21.552029Z", 326 | "relationship_type": "part-of", 327 | "description": "Company 'Kaspersky' is part of sector 'Technologies'", 328 | "source_ref": "identity--4e121c7f-b5be-478d-ab4f-87f38743fcdf", 329 | "revoked": false, 330 | "target_ref": "identity--84c3a483-2048-40d4-8d8f-5e57ff35da9c", 331 | "confidence": 100, 332 | "object_marking_refs": [ 333 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 334 | ] 335 | }, 336 | { 337 | "type": "identity", 338 | "spec_version": "2.1", 339 | "id": "identity--59fe9753-5540-4505-9013-cfef0004fa68", 340 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 341 | "created": "2022-01-22T19:05:28.313378Z", 342 | "modified": "2023-11-19T01:02:21.552029Z", 343 | "name": "Trendmicro", 344 | "description": "", 345 | "identity_class": "organization", 346 | "revoked": false, 347 | "contact_information": "trendmicro.com", 348 | "confidence": 100, 349 | "object_marking_refs": [ 350 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 351 | ], 352 | "x_opencti_organization_type": "" 353 | }, 354 | { 355 | "type": "relationship", 356 | "spec_version": "2.1", 357 | "id": "relationship--78ade9f2-358f-4f7c-b153-e8bf15792400", 358 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 359 | "created": "2022-01-22T19:05:28.313644Z", 360 | "modified": "2023-11-19T01:02:21.552029Z", 361 | "relationship_type": "part-of", 362 | "description": "Company 'Trendmicro' is part of sector 'Technologies'", 363 | "source_ref": "identity--59fe9753-5540-4505-9013-cfef0004fa68", 364 | "revoked": false, 365 | "target_ref": "identity--84c3a483-2048-40d4-8d8f-5e57ff35da9c", 366 | "confidence": 100, 367 | "object_marking_refs": [ 368 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 369 | ] 370 | }, 371 | { 372 | "type": "identity", 373 | "spec_version": "2.1", 374 | "id": "identity--3178ea13-c331-4e1d-b459-f19ada2908f2", 375 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 376 | "created": "2022-01-22T19:05:28.313864Z", 377 | "modified": "2023-11-19T01:02:21.552029Z", 378 | "name": "Proofpoint", 379 | "description": "", 380 | "identity_class": "organization", 381 | "revoked": false, 382 | "contact_information": "proofpoint.com", 383 | "confidence": 100, 384 | "object_marking_refs": [ 385 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 386 | ], 387 | "x_opencti_organization_type": "" 388 | }, 389 | { 390 | "type": "relationship", 391 | "spec_version": "2.1", 392 | "id": "relationship--ff7e4bea-75f4-4820-b4f6-3bc4a0d8d21c", 393 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 394 | "created": "2022-01-22T19:05:28.314098Z", 395 | "modified": "2023-11-19T01:02:21.552029Z", 396 | "relationship_type": "part-of", 397 | "description": "Company 'Proofpoint' is part of sector 'Technologies'", 398 | "source_ref": "identity--3178ea13-c331-4e1d-b459-f19ada2908f2", 399 | "revoked": false, 400 | "target_ref": "identity--84c3a483-2048-40d4-8d8f-5e57ff35da9c", 401 | "confidence": 100, 402 | "object_marking_refs": [ 403 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 404 | ] 405 | }, 406 | { 407 | "type": "identity", 408 | "spec_version": "2.1", 409 | "id": "identity--bfb4b7b8-853d-46c0-bc23-ac3730e4a9f8", 410 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 411 | "created": "2022-01-22T19:05:28.314313Z", 412 | "modified": "2023-11-19T01:02:21.552029Z", 413 | "name": "Cylance", 414 | "description": "", 415 | "identity_class": "organization", 416 | "revoked": false, 417 | "contact_information": "cylance.com", 418 | "confidence": 100, 419 | "object_marking_refs": [ 420 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 421 | ], 422 | "x_opencti_organization_type": "" 423 | }, 424 | { 425 | "type": "relationship", 426 | "spec_version": "2.1", 427 | "id": "relationship--8881b01c-6522-4b18-bb9c-4fd5c53a4b5b", 428 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 429 | "created": "2022-01-22T19:05:28.314541Z", 430 | "modified": "2023-11-19T01:02:21.553059Z", 431 | "relationship_type": "part-of", 432 | "description": "Company 'Cylance' is part of sector 'Technologies'", 433 | "source_ref": "identity--bfb4b7b8-853d-46c0-bc23-ac3730e4a9f8", 434 | "revoked": false, 435 | "target_ref": "identity--84c3a483-2048-40d4-8d8f-5e57ff35da9c", 436 | "confidence": 100, 437 | "object_marking_refs": [ 438 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 439 | ] 440 | }, 441 | { 442 | "type": "identity", 443 | "spec_version": "2.1", 444 | "id": "identity--c01a5e53-f12d-4ca6-8f9b-bbe46bb53f1e", 445 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 446 | "created": "2022-01-22T19:05:28.314791Z", 447 | "modified": "2023-11-19T01:02:21.553059Z", 448 | "name": "Telsy", 449 | "description": "", 450 | "identity_class": "organization", 451 | "revoked": false, 452 | "contact_information": "telsy.com", 453 | "confidence": 100, 454 | "object_marking_refs": [ 455 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 456 | ], 457 | "x_opencti_organization_type": "" 458 | }, 459 | { 460 | "type": "relationship", 461 | "spec_version": "2.1", 462 | "id": "relationship--ec28321a-d55e-4e6b-b80c-4d49a840cbae", 463 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 464 | "created": "2022-01-22T19:05:28.315025Z", 465 | "modified": "2023-11-19T01:02:21.553059Z", 466 | "relationship_type": "part-of", 467 | "description": "Company 'Telsy' is part of sector 'Technologies'", 468 | "source_ref": "identity--c01a5e53-f12d-4ca6-8f9b-bbe46bb53f1e", 469 | "revoked": false, 470 | "target_ref": "identity--84c3a483-2048-40d4-8d8f-5e57ff35da9c", 471 | "confidence": 100, 472 | "object_marking_refs": [ 473 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 474 | ] 475 | }, 476 | { 477 | "type": "identity", 478 | "spec_version": "2.1", 479 | "id": "identity--72c529ff-0334-4d8b-bdf3-954e890e9cd8", 480 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 481 | "created": "2022-01-22T19:05:28.315242Z", 482 | "modified": "2023-11-19T01:02:21.553059Z", 483 | "name": "Recorded Future", 484 | "description": "", 485 | "identity_class": "organization", 486 | "revoked": false, 487 | "contact_information": "recordedfuture.com", 488 | "confidence": 100, 489 | "object_marking_refs": [ 490 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 491 | ], 492 | "x_opencti_organization_type": "" 493 | }, 494 | { 495 | "type": "relationship", 496 | "spec_version": "2.1", 497 | "id": "relationship--1c268a06-26c2-4440-8cd6-4b1a1150fa64", 498 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 499 | "created": "2022-01-22T19:05:28.315472Z", 500 | "modified": "2023-11-19T01:02:21.553059Z", 501 | "relationship_type": "part-of", 502 | "description": "Company 'Recorded Future' is part of sector 'Technologies'", 503 | "source_ref": "identity--72c529ff-0334-4d8b-bdf3-954e890e9cd8", 504 | "revoked": false, 505 | "target_ref": "identity--84c3a483-2048-40d4-8d8f-5e57ff35da9c", 506 | "confidence": 100, 507 | "object_marking_refs": [ 508 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 509 | ] 510 | }, 511 | { 512 | "type": "identity", 513 | "spec_version": "2.1", 514 | "id": "identity--21b02c78-d739-49c0-b65b-cc9e422b4b4a", 515 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 516 | "created": "2022-01-22T19:05:28.315687Z", 517 | "modified": "2023-11-19T01:02:21.553059Z", 518 | "name": "RiskIQ", 519 | "description": "", 520 | "identity_class": "organization", 521 | "revoked": false, 522 | "contact_information": "riskiq.com", 523 | "confidence": 100, 524 | "object_marking_refs": [ 525 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 526 | ], 527 | "x_opencti_organization_type": "" 528 | }, 529 | { 530 | "type": "relationship", 531 | "spec_version": "2.1", 532 | "id": "relationship--331bf9f6-232c-4f77-8fa0-6ce884d49f40", 533 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 534 | "created": "2022-01-22T19:05:28.315957Z", 535 | "modified": "2023-11-19T01:02:21.553059Z", 536 | "relationship_type": "part-of", 537 | "description": "Company 'RiskIQ' is part of sector 'Technologies'", 538 | "source_ref": "identity--21b02c78-d739-49c0-b65b-cc9e422b4b4a", 539 | "revoked": false, 540 | "target_ref": "identity--84c3a483-2048-40d4-8d8f-5e57ff35da9c", 541 | "confidence": 100, 542 | "object_marking_refs": [ 543 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 544 | ] 545 | }, 546 | { 547 | "type": "identity", 548 | "spec_version": "2.1", 549 | "id": "identity--0a2c3f07-f585-4524-8292-3d618cb21bf8", 550 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 551 | "created": "2022-01-22T19:05:28.316206Z", 552 | "modified": "2023-11-19T01:02:21.553059Z", 553 | "name": "Gatewatcher ", 554 | "description": "", 555 | "identity_class": "organization", 556 | "revoked": false, 557 | "contact_information": "gatewatcher.com", 558 | "confidence": 100, 559 | "object_marking_refs": [ 560 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 561 | ], 562 | "x_opencti_organization_type": "" 563 | }, 564 | { 565 | "type": "relationship", 566 | "spec_version": "2.1", 567 | "id": "relationship--43ac9c71-c43c-4818-8eef-ef984840955e", 568 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 569 | "created": "2022-01-22T19:05:28.316459Z", 570 | "modified": "2023-11-19T01:02:21.553059Z", 571 | "relationship_type": "part-of", 572 | "description": "Company 'Gatewatcher ' is part of sector 'Technologies'", 573 | "source_ref": "identity--0a2c3f07-f585-4524-8292-3d618cb21bf8", 574 | "revoked": false, 575 | "target_ref": "identity--84c3a483-2048-40d4-8d8f-5e57ff35da9c", 576 | "confidence": 100, 577 | "object_marking_refs": [ 578 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 579 | ] 580 | }, 581 | { 582 | "type": "identity", 583 | "spec_version": "2.1", 584 | "id": "identity--1dc74d1a-4717-4260-a797-8d2d59f81cee", 585 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 586 | "created": "2022-01-22T19:05:28.316773Z", 587 | "modified": "2023-11-19T01:02:21.553059Z", 588 | "name": "Group-IB", 589 | "description": "", 590 | "identity_class": "organization", 591 | "revoked": false, 592 | "contact_information": "Group-ib.com", 593 | "confidence": 100, 594 | "object_marking_refs": [ 595 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 596 | ], 597 | "x_opencti_organization_type": "" 598 | }, 599 | { 600 | "type": "relationship", 601 | "spec_version": "2.1", 602 | "id": "relationship--14724333-b323-49a7-95c5-2772bba7cfbe", 603 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 604 | "created": "2022-01-22T19:05:28.317064Z", 605 | "modified": "2023-11-19T01:02:21.554098Z", 606 | "relationship_type": "part-of", 607 | "description": "Company 'Group-IB' is part of sector 'Technologies'", 608 | "source_ref": "identity--1dc74d1a-4717-4260-a797-8d2d59f81cee", 609 | "revoked": false, 610 | "target_ref": "identity--84c3a483-2048-40d4-8d8f-5e57ff35da9c", 611 | "confidence": 100, 612 | "object_marking_refs": [ 613 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 614 | ] 615 | }, 616 | { 617 | "type": "identity", 618 | "spec_version": "2.1", 619 | "id": "identity--71c93bb9-feab-4f7c-b7ed-c7bbea7a2220", 620 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 621 | "created": "2022-01-22T19:05:28.317279Z", 622 | "modified": "2023-11-19T01:02:21.554098Z", 623 | "name": "Nextron Systems", 624 | "description": "", 625 | "identity_class": "organization", 626 | "revoked": false, 627 | "contact_information": "Nextron-systems.com", 628 | "confidence": 100, 629 | "object_marking_refs": [ 630 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 631 | ], 632 | "x_opencti_organization_type": "" 633 | }, 634 | { 635 | "type": "relationship", 636 | "spec_version": "2.1", 637 | "id": "relationship--2317d051-e329-4a1f-80c0-5a6d09610aaa", 638 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 639 | "created": "2022-01-22T19:05:28.317508Z", 640 | "modified": "2023-11-19T01:02:21.554098Z", 641 | "relationship_type": "part-of", 642 | "description": "Company 'Nextron Systems' is part of sector 'Technologies'", 643 | "source_ref": "identity--71c93bb9-feab-4f7c-b7ed-c7bbea7a2220", 644 | "revoked": false, 645 | "target_ref": "identity--84c3a483-2048-40d4-8d8f-5e57ff35da9c", 646 | "confidence": 100, 647 | "object_marking_refs": [ 648 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 649 | ] 650 | }, 651 | { 652 | "type": "identity", 653 | "spec_version": "2.1", 654 | "id": "identity--23183bf2-0e0b-41ea-9205-7ab2f47b9c4c", 655 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 656 | "created": "2022-01-22T19:05:28.31772Z", 657 | "modified": "2023-11-19T01:02:21.554098Z", 658 | "name": "GreyNoise", 659 | "description": "", 660 | "identity_class": "organization", 661 | "revoked": false, 662 | "contact_information": "greynoise.io", 663 | "confidence": 100, 664 | "object_marking_refs": [ 665 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 666 | ], 667 | "x_opencti_organization_type": "" 668 | }, 669 | { 670 | "type": "relationship", 671 | "spec_version": "2.1", 672 | "id": "relationship--8b8a9b92-0881-4b7d-b2e2-919c89e54f31", 673 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 674 | "created": "2022-01-22T19:05:28.317954Z", 675 | "modified": "2023-11-19T01:02:21.554098Z", 676 | "relationship_type": "part-of", 677 | "description": "Company 'GreyNoise' is part of sector 'Technologies'", 678 | "source_ref": "identity--23183bf2-0e0b-41ea-9205-7ab2f47b9c4c", 679 | "revoked": false, 680 | "target_ref": "identity--84c3a483-2048-40d4-8d8f-5e57ff35da9c", 681 | "confidence": 100, 682 | "object_marking_refs": [ 683 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 684 | ] 685 | }, 686 | { 687 | "type": "identity", 688 | "spec_version": "2.1", 689 | "id": "identity--76123747-4e94-45a4-8a9d-d067429a983b", 690 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 691 | "created": "2022-01-22T19:05:28.318171Z", 692 | "modified": "2023-11-19T01:02:21.554098Z", 693 | "name": "Tenzir", 694 | "description": "", 695 | "identity_class": "organization", 696 | "revoked": false, 697 | "contact_information": "tenzir.com", 698 | "confidence": 100, 699 | "object_marking_refs": [ 700 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 701 | ], 702 | "x_opencti_organization_type": "" 703 | }, 704 | { 705 | "type": "relationship", 706 | "spec_version": "2.1", 707 | "id": "relationship--be2b7a54-b358-446a-a57e-5f658bd5b461", 708 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 709 | "created": "2022-01-22T19:05:28.318405Z", 710 | "modified": "2023-11-19T01:02:21.554098Z", 711 | "relationship_type": "part-of", 712 | "description": "Company 'Tenzir' is part of sector 'Technologies'", 713 | "source_ref": "identity--76123747-4e94-45a4-8a9d-d067429a983b", 714 | "revoked": false, 715 | "target_ref": "identity--84c3a483-2048-40d4-8d8f-5e57ff35da9c", 716 | "confidence": 100, 717 | "object_marking_refs": [ 718 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 719 | ] 720 | }, 721 | { 722 | "type": "identity", 723 | "spec_version": "2.1", 724 | "id": "identity--52089341-7540-45a3-8898-6c6830c068a3", 725 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 726 | "created": "2022-01-22T19:05:28.318624Z", 727 | "modified": "2023-11-19T01:02:21.554098Z", 728 | "name": "BSI", 729 | "description": "", 730 | "identity_class": "organization", 731 | "revoked": false, 732 | "contact_information": "bsi.bund.de", 733 | "confidence": 100, 734 | "object_marking_refs": [ 735 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 736 | ], 737 | "x_opencti_organization_type": "csirt" 738 | }, 739 | { 740 | "type": "relationship", 741 | "spec_version": "2.1", 742 | "id": "relationship--1f311ee7-c72b-4758-b9e2-75339e54a706", 743 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 744 | "created": "2022-01-22T19:05:28.31884Z", 745 | "modified": "2023-11-19T01:02:21.554098Z", 746 | "relationship_type": "part-of", 747 | "description": "Company 'BSI' is part of sector 'Central administration and government'", 748 | "source_ref": "identity--52089341-7540-45a3-8898-6c6830c068a3", 749 | "revoked": false, 750 | "target_ref": "identity--4a650617-1771-4e3b-bcc5-38047b81e807", 751 | "confidence": 100, 752 | "object_marking_refs": [ 753 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 754 | ] 755 | }, 756 | { 757 | "type": "identity", 758 | "spec_version": "2.1", 759 | "id": "identity--322ddb71-3f7f-4dfe-981f-bc79a2950d4b", 760 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 761 | "created": "2022-01-22T19:05:28.319472Z", 762 | "modified": "2023-11-19T01:02:21.554098Z", 763 | "name": "CERT-EU", 764 | "description": "", 765 | "identity_class": "organization", 766 | "revoked": false, 767 | "contact_information": "cert.europa.eu", 768 | "confidence": 100, 769 | "object_marking_refs": [ 770 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 771 | ], 772 | "x_opencti_organization_type": "csirt" 773 | }, 774 | { 775 | "type": "relationship", 776 | "spec_version": "2.1", 777 | "id": "relationship--21833c04-1447-4a86-9247-c2b8948a0b52", 778 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 779 | "created": "2022-01-22T19:05:28.319682Z", 780 | "modified": "2023-11-19T01:02:21.555149Z", 781 | "relationship_type": "part-of", 782 | "description": "Company 'CERT-EU' is part of sector 'Central administration and government'", 783 | "source_ref": "identity--322ddb71-3f7f-4dfe-981f-bc79a2950d4b", 784 | "revoked": false, 785 | "target_ref": "identity--4a650617-1771-4e3b-bcc5-38047b81e807", 786 | "confidence": 100, 787 | "object_marking_refs": [ 788 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 789 | ] 790 | }, 791 | { 792 | "type": "identity", 793 | "spec_version": "2.1", 794 | "id": "identity--48bd64a7-4283-4729-809b-fad8b10dfb8e", 795 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 796 | "created": "2022-01-22T19:05:28.319898Z", 797 | "modified": "2023-11-19T01:02:21.555149Z", 798 | "name": "NCSC-UK", 799 | "description": "", 800 | "identity_class": "organization", 801 | "revoked": false, 802 | "contact_information": "ncsc.gov.uk", 803 | "confidence": 100, 804 | "object_marking_refs": [ 805 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 806 | ], 807 | "x_opencti_organization_type": "csirt" 808 | }, 809 | { 810 | "type": "relationship", 811 | "spec_version": "2.1", 812 | "id": "relationship--a270e057-a506-4d91-8954-6da6aa9eae59", 813 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 814 | "created": "2022-01-22T19:05:28.32013Z", 815 | "modified": "2023-11-19T01:02:21.555149Z", 816 | "relationship_type": "part-of", 817 | "description": "Company 'NCSC-UK' is part of sector 'Central administration and government'", 818 | "source_ref": "identity--48bd64a7-4283-4729-809b-fad8b10dfb8e", 819 | "revoked": false, 820 | "target_ref": "identity--4a650617-1771-4e3b-bcc5-38047b81e807", 821 | "confidence": 100, 822 | "object_marking_refs": [ 823 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 824 | ] 825 | }, 826 | { 827 | "type": "identity", 828 | "spec_version": "2.1", 829 | "id": "identity--2617edab-4f11-4134-9614-ceecdcd1e3ad", 830 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 831 | "created": "2022-01-22T19:05:28.320356Z", 832 | "modified": "2023-11-19T01:02:21.555149Z", 833 | "name": "CERT-Bund", 834 | "description": "", 835 | "identity_class": "organization", 836 | "revoked": false, 837 | "contact_information": "cert-bund.de", 838 | "confidence": 100, 839 | "object_marking_refs": [ 840 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 841 | ], 842 | "x_opencti_organization_type": "csirt" 843 | }, 844 | { 845 | "type": "relationship", 846 | "spec_version": "2.1", 847 | "id": "relationship--cae54161-a5c4-4c36-91d1-c87257633ae6", 848 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 849 | "created": "2022-01-22T19:05:28.320569Z", 850 | "modified": "2023-11-19T01:02:21.555149Z", 851 | "relationship_type": "part-of", 852 | "description": "Company 'CERT-Bund' is part of sector 'Central administration and government'", 853 | "source_ref": "identity--2617edab-4f11-4134-9614-ceecdcd1e3ad", 854 | "revoked": false, 855 | "target_ref": "identity--4a650617-1771-4e3b-bcc5-38047b81e807", 856 | "confidence": 100, 857 | "object_marking_refs": [ 858 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 859 | ] 860 | }, 861 | { 862 | "type": "identity", 863 | "spec_version": "2.1", 864 | "id": "identity--e294d38e-d860-4c0e-9732-5ddcb96f8cb7", 865 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 866 | "created": "2022-01-22T19:05:28.320831Z", 867 | "modified": "2023-11-19T01:02:21.555149Z", 868 | "name": "CISA", 869 | "description": "", 870 | "identity_class": "organization", 871 | "revoked": false, 872 | "contact_information": "cisa.gov", 873 | "confidence": 100, 874 | "object_marking_refs": [ 875 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 876 | ], 877 | "x_opencti_organization_type": "csirt" 878 | }, 879 | { 880 | "type": "relationship", 881 | "spec_version": "2.1", 882 | "id": "relationship--862969ad-e2bd-4d27-baca-70d9ef6405e7", 883 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 884 | "created": "2022-01-22T19:05:28.321046Z", 885 | "modified": "2023-11-19T01:02:21.555149Z", 886 | "relationship_type": "part-of", 887 | "description": "Company 'CISA' is part of sector 'Central administration and government'", 888 | "source_ref": "identity--e294d38e-d860-4c0e-9732-5ddcb96f8cb7", 889 | "revoked": false, 890 | "target_ref": "identity--4a650617-1771-4e3b-bcc5-38047b81e807", 891 | "confidence": 100, 892 | "object_marking_refs": [ 893 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 894 | ] 895 | }, 896 | { 897 | "type": "identity", 898 | "spec_version": "2.1", 899 | "id": "identity--f1df06a5-24f3-4ebb-8694-009b3be23425", 900 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 901 | "created": "2022-01-22T19:05:28.321295Z", 902 | "modified": "2023-11-19T01:02:21.555149Z", 903 | "name": "FBI", 904 | "description": "", 905 | "identity_class": "organization", 906 | "revoked": false, 907 | "contact_information": "fbi.gov", 908 | "confidence": 100, 909 | "object_marking_refs": [ 910 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 911 | ], 912 | "x_opencti_organization_type": "" 913 | }, 914 | { 915 | "type": "relationship", 916 | "spec_version": "2.1", 917 | "id": "relationship--5bcaba15-d247-427d-97ce-132acf3a7114", 918 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 919 | "created": "2022-01-22T19:05:28.321509Z", 920 | "modified": "2023-11-19T01:02:21.555149Z", 921 | "relationship_type": "part-of", 922 | "description": "Company 'FBI' is part of sector 'Central administration and government'", 923 | "source_ref": "identity--f1df06a5-24f3-4ebb-8694-009b3be23425", 924 | "revoked": false, 925 | "target_ref": "identity--4a650617-1771-4e3b-bcc5-38047b81e807", 926 | "confidence": 100, 927 | "object_marking_refs": [ 928 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 929 | ] 930 | }, 931 | { 932 | "type": "identity", 933 | "spec_version": "2.1", 934 | "id": "identity--f7d6445e-c993-484e-80f9-279654e97cfd", 935 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 936 | "created": "2022-01-22T19:05:28.321725Z", 937 | "modified": "2023-11-19T01:02:21.555149Z", 938 | "name": "Europol", 939 | "description": "", 940 | "identity_class": "organization", 941 | "revoked": false, 942 | "contact_information": "europol.europa.eu", 943 | "confidence": 100, 944 | "object_marking_refs": [ 945 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 946 | ], 947 | "x_opencti_organization_type": "" 948 | }, 949 | { 950 | "type": "relationship", 951 | "spec_version": "2.1", 952 | "id": "relationship--7231cbb6-17e7-447d-9e2e-e368f2f4b602", 953 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 954 | "created": "2022-01-22T19:05:28.321943Z", 955 | "modified": "2023-11-19T01:02:21.556176Z", 956 | "relationship_type": "part-of", 957 | "description": "Company 'Europol' is part of sector 'Central administration and government'", 958 | "source_ref": "identity--f7d6445e-c993-484e-80f9-279654e97cfd", 959 | "revoked": false, 960 | "target_ref": "identity--4a650617-1771-4e3b-bcc5-38047b81e807", 961 | "confidence": 100, 962 | "object_marking_refs": [ 963 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 964 | ] 965 | }, 966 | { 967 | "type": "identity", 968 | "spec_version": "2.1", 969 | "id": "identity--3b9fe45c-d340-4750-a711-1eca5009f123", 970 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 971 | "created": "2022-01-22T19:05:28.322153Z", 972 | "modified": "2023-11-19T01:02:21.556176Z", 973 | "name": "New York Times", 974 | "description": "", 975 | "identity_class": "organization", 976 | "revoked": false, 977 | "contact_information": "newyorktimes.com", 978 | "confidence": 100, 979 | "object_marking_refs": [ 980 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 981 | ], 982 | "x_opencti_organization_type": "" 983 | }, 984 | { 985 | "type": "relationship", 986 | "spec_version": "2.1", 987 | "id": "relationship--e7b2704a-4e32-4c1e-9344-f271c7dcc1f9", 988 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 989 | "created": "2022-01-22T19:05:28.322394Z", 990 | "modified": "2023-11-19T01:02:21.556176Z", 991 | "relationship_type": "part-of", 992 | "description": "Company 'New York Times' is part of sector 'Medias and audiovisual'", 993 | "source_ref": "identity--3b9fe45c-d340-4750-a711-1eca5009f123", 994 | "revoked": false, 995 | "target_ref": "identity--354c9312-5f4a-4e07-b0cb-c7fa6ca626ba", 996 | "confidence": 100, 997 | "object_marking_refs": [ 998 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 999 | ] 1000 | }, 1001 | { 1002 | "type": "identity", 1003 | "spec_version": "2.1", 1004 | "id": "identity--0f60ed62-526e-4331-8ed3-675d5b7a9c7d", 1005 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 1006 | "created": "2022-01-22T19:05:28.322623Z", 1007 | "modified": "2023-11-19T01:02:21.556176Z", 1008 | "name": "Washington Post", 1009 | "description": "", 1010 | "identity_class": "organization", 1011 | "revoked": false, 1012 | "contact_information": "washingtonpost.com", 1013 | "confidence": 100, 1014 | "object_marking_refs": [ 1015 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 1016 | ], 1017 | "x_opencti_organization_type": "" 1018 | }, 1019 | { 1020 | "type": "relationship", 1021 | "spec_version": "2.1", 1022 | "id": "relationship--06648b53-73a4-4e04-851d-60ffa00704b6", 1023 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 1024 | "created": "2022-01-22T19:05:28.322837Z", 1025 | "modified": "2023-11-19T01:02:21.556176Z", 1026 | "relationship_type": "part-of", 1027 | "description": "Company 'Washington Post' is part of sector 'Medias and audiovisual'", 1028 | "source_ref": "identity--0f60ed62-526e-4331-8ed3-675d5b7a9c7d", 1029 | "revoked": false, 1030 | "target_ref": "identity--354c9312-5f4a-4e07-b0cb-c7fa6ca626ba", 1031 | "confidence": 100, 1032 | "object_marking_refs": [ 1033 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 1034 | ] 1035 | }, 1036 | { 1037 | "type": "identity", 1038 | "spec_version": "2.1", 1039 | "id": "identity--92119851-fd4e-461d-8c0c-e144d0696915", 1040 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 1041 | "created": "2022-01-22T19:05:28.323056Z", 1042 | "modified": "2023-11-19T01:02:21.556176Z", 1043 | "name": "Malpedia", 1044 | "description": "", 1045 | "identity_class": "organization", 1046 | "revoked": false, 1047 | "contact_information": "malpedia.caad.fkie.fraunhofer.de", 1048 | "confidence": 100, 1049 | "object_marking_refs": [ 1050 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 1051 | ], 1052 | "x_opencti_organization_type": "" 1053 | }, 1054 | { 1055 | "type": "relationship", 1056 | "spec_version": "2.1", 1057 | "id": "relationship--74c5bd4d-d0ea-4db0-83c0-5a9be3ddd8c2", 1058 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 1059 | "created": "2022-01-22T19:05:28.323272Z", 1060 | "modified": "2023-11-19T01:02:21.556176Z", 1061 | "relationship_type": "part-of", 1062 | "description": "Company 'Malpedia' is part of sector 'Technologies'", 1063 | "source_ref": "identity--92119851-fd4e-461d-8c0c-e144d0696915", 1064 | "revoked": false, 1065 | "target_ref": "identity--84c3a483-2048-40d4-8d8f-5e57ff35da9c", 1066 | "confidence": 100, 1067 | "object_marking_refs": [ 1068 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 1069 | ] 1070 | }, 1071 | { 1072 | "type": "identity", 1073 | "spec_version": "2.1", 1074 | "id": "identity--f2f7c9b7-8eed-4eb7-b1a9-1586e90f711b", 1075 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 1076 | "created": "2022-01-22T19:05:28.323482Z", 1077 | "modified": "2023-11-19T01:02:21.556176Z", 1078 | "name": "The Record", 1079 | "description": "", 1080 | "identity_class": "organization", 1081 | "revoked": false, 1082 | "contact_information": "therecord.media", 1083 | "confidence": 100, 1084 | "object_marking_refs": [ 1085 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 1086 | ], 1087 | "x_opencti_organization_type": "" 1088 | }, 1089 | { 1090 | "type": "relationship", 1091 | "spec_version": "2.1", 1092 | "id": "relationship--f94e1793-ba17-4449-bf32-3a94925b6685", 1093 | "created_by_ref": "identity--8cb00c79-ab20-5ed4-b37d-337241b96a29", 1094 | "created": "2022-01-22T19:05:28.32375Z", 1095 | "modified": "2023-11-19T01:02:21.556176Z", 1096 | "relationship_type": "part-of", 1097 | "description": "Company 'The Record' is part of sector 'Medias and audiovisual'", 1098 | "source_ref": "identity--f2f7c9b7-8eed-4eb7-b1a9-1586e90f711b", 1099 | "revoked": false, 1100 | "target_ref": "identity--354c9312-5f4a-4e07-b0cb-c7fa6ca626ba", 1101 | "confidence": 100, 1102 | "object_marking_refs": [ 1103 | "marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9" 1104 | ] 1105 | } 1106 | ] 1107 | } -------------------------------------------------------------------------------- /raw/companies.csv: -------------------------------------------------------------------------------- 1 | name,description,contact_information,x_opencti_aliases,x_opencti_organization_type,x_opencti_reliability,sectors,other_stix_ids,createdBy,objectMarking,objectLabel,external_references 2 | Fireeye,,fireeye.com,,,,Technologies,,Filigran,TLP:WHITE,, 3 | Mandiant,,mandiant.com,,,,Technologies,,Filigran,TLP:WHITE,, 4 | Crowdstrike,,crowdstrike.com,,,,Technologies,,Filigran,TLP:WHITE,, 5 | BAE Systems,,baesystems.com,,,,Technologies,,Filigran,TLP:WHITE,, 6 | ESET,,eset.com,,,,Technologies,,Filigran,TLP:WHITE,, 7 | McAfee,,mcafee.com,,,,Technologies,,Filigran,TLP:WHITE,, 8 | Symantec,,symantec.com,,,,Technologies,,Filigran,TLP:WHITE,, 9 | Checkpoint,,checkpoint.com,,,,Technologies,,Filigran,TLP:WHITE,, 10 | Kaspersky,,kaspersky.com,,,,Technologies,,Filigran,TLP:WHITE,, 11 | Trendmicro,,trendmicro.com,,,,Technologies,,Filigran,TLP:WHITE,, 12 | Proofpoint,,proofpoint.com,,,,Technologies,,Filigran,TLP:WHITE,, 13 | Cylance,,cylance.com,,,,Technologies,,Filigran,TLP:WHITE,, 14 | Telsy,,telsy.com,,,,Technologies,,Filigran,TLP:WHITE,, 15 | Recorded Future,,recordedfuture.com,,,,Technologies,,Filigran,TLP:WHITE,, 16 | RiskIQ,,riskiq.com,,,,Technologies,,Filigran,TLP:WHITE,, 17 | Gatewatcher ,,gatewatcher.com,,,,Technologies,,Filigran,TLP:WHITE,, 18 | Group-IB,,Group-ib.com,,,,Technologies,,Filigran,TLP:WHITE,, 19 | Nextron Systems,,Nextron-systems.com,,,,Technologies,,Filigran,TLP:WHITE,, 20 | GreyNoise,,greynoise.io,,,,Technologies,,Filigran,TLP:WHITE,, 21 | Tenzir,,tenzir.com,,,,Technologies,,Filigran,TLP:WHITE,, 22 | BSI,,bsi.bund.de,,csirt,,Central administration and government,,Filigran,TLP:WHITE,, 23 | CERT-EU,,cert.europa.eu,,csirt,,Central administration and government,,Filigran,TLP:WHITE,, 24 | NCSC-UK,,ncsc.gov.uk,,csirt,,Central administration and government,,Filigran,TLP:WHITE,, 25 | CERT-Bund,,cert-bund.de,,csirt,,Central administration and government,,Filigran,TLP:WHITE,, 26 | CISA,,cisa.gov,,csirt,,Central administration and government,,Filigran,TLP:WHITE,, 27 | FBI,,fbi.gov,,,,Central administration and government,,Filigran,TLP:WHITE,, 28 | Europol,,europol.europa.eu,,,,Central administration and government,,Filigran,TLP:WHITE,, 29 | New York Times,,newyorktimes.com,,,,Medias and audiovisual,,Filigran,TLP:WHITE,, 30 | Washington Post,,washingtonpost.com,,,,Medias and audiovisual,,Filigran,TLP:WHITE,, 31 | Malpedia,,malpedia.caad.fkie.fraunhofer.de,,,,Technologies,,Filigran,TLP:WHITE,, 32 | The Record,,therecord.media,,,,Medias and audiovisual,,Filigran,TLP:WHITE,, 33 | -------------------------------------------------------------------------------- /raw/geo.csv: -------------------------------------------------------------------------------- 1 | UUID1,UUID2,UUID3,Region Name,Sub-region Name,Intermediate Region Name,Country or Area,ISO-alpha3 Code,ISO-alpha2 Code,lat,lng,lat-region,lng-region,lat-subregion,lng-sub-region 2 | ee0b54f0-52b2-468e-8590-b251de47f96e,57cd0e92-9620-48f8-957d-97fcf28f690c,5bed1f53-93bc-4331-a049-17e31db03753,Africa,Northern Africa,,Algeria,DZA,DZ,28.033886,1.659626,11.5024338,17.7578122,28.0000272,2.9999825 3 | 1b27d1ea-4d00-4a07-a9e1-e1e8cf296c4e,457c2979-3a11-4d0f-b880-9cb85fb579f5,f11306b1-79c9-4284-a088-3f80217fa022,Africa,Northern Africa,,Egypt,EGY,EG,26.820553,30.802498,,,, 4 | 26df8c16-0395-479d-a953-cef54281e0cd,571822c0-b90f-4a0d-9e7d-51175a352fe1,3201b1e1-4a79-4570-af3d-77a49b7f321a,Africa,Northern Africa,,Libya,LBY,LY,26.3351,17.228331,,,, 5 | b2b91268-7907-4dcb-9263-c800fcca4e2c,dca91a7f-3bec-4e88-81ad-902ff08643f9,0281b548-c19e-4465-ba15-871bd88e45ad,Africa,Northern Africa,,Morocco,MAR,MA,31.791702,-7.09262,,,, 6 | dfa1dd1a-dea9-470d-aef8-c209cbf66967,b3b8f627-7bdd-406d-867a-31816b6693ea,772ad3c9-fa4e-4df3-9b6f-b622f8e6b391,Africa,Northern Africa,,Sudan,SDN,SD,12.862807,30.217636,,,, 7 | 5282ff94-b7d5-44fe-b02d-66691d5a3a90,c77dacad-b80b-42d4-a17b-2178c72ec975,5d081829-67f6-446f-bf3f-aa89eb5966f4,Africa,Northern Africa,,Tunisia,TUN,TN,33.886917,9.537499,,,, 8 | df13a133-d9a3-4c69-9491-9c34957b9d77,55051763-3010-4cc4-a019-79a6db6b7ff3,7e174111-9de5-43c9-8491-7946a827a74f,Africa,Northern Africa,,Western Sahara,ESH,EH,24.215527,-12.885834,,,, 9 | 6355f138-c2ad-482e-9a35-7db9480c9df2,93787b89-8e1c-45a4-8d91-95af1ac76bb4,d3868bb6-835a-4e5d-9b84-cd8db115c587,Africa,Sub-Saharan Africa,Eastern Africa,British Indian Ocean Territory,IOT,IO,-6.343194,71.876519,,,-2.9814344,23.8222636 10 | a92231d4-7864-4550-91c8-f9a5fd7bca5e,13a83928-be0f-4875-a86f-e9bff85d3db4,f2ad90fc-a4d0-44fd-9326-ef423a23f9fd,Africa,Sub-Saharan Africa,Eastern Africa,Burundi,BDI,BI,-3.373056,29.918886,,,, 11 | 83aa465e-f4fa-4bcd-a2a5-c5518da236fd,76419952-19b2-4fee-97e0-f6c37dcc65ed,ebfad738-9e94-4606-b57e-ae0c9c110ab5,Africa,Sub-Saharan Africa,Eastern Africa,Comoros,COM,KM,-11.875001,43.872219,,,, 12 | a93a6b5e-d6f2-462c-87e1-77f1fc05c37f,733e7bb2-bb11-4d19-902a-511ba69e3b3a,e129bb1e-b4b3-47d7-8f30-b24de2269585,Africa,Sub-Saharan Africa,Eastern Africa,Djibouti,DJI,DJ,11.825138,42.590275,,,, 13 | 57c469df-a7c5-4d27-bfcf-f013cbc1298d,1ec9a517-a1c1-4c64-a0c1-198574623aea,1b5b393c-4bca-46ee-826a-b38eab7f0d4d,Africa,Sub-Saharan Africa,Eastern Africa,Eritrea,ERI,ER,15.179384,39.782334,,,, 14 | f117f707-e6ca-4a45-81b5-fbf97f7a8d82,c14feb34-081a-4ce6-9ac5-3e92f354ebf8,ffb3858d-c184-480e-a886-d61939f45bc9,Africa,Sub-Saharan Africa,Eastern Africa,Ethiopia,ETH,ET,9.145,40.489673,,,, 15 | 6c6c2e57-519a-4a64-b9c0-353c8070cff4,140394bc-d34a-4edc-b044-15800309a04a,90659c03-b9cb-4bf8-ad31-5f8cdf1cf00f,Africa,Sub-Saharan Africa,Eastern Africa,French Southern Territories,ATF,TF,-49.280366,69.348557,,,, 16 | cb0f8ac9-6069-408e-a4b1-e666a4ecba7a,a3cbb803-3823-4b27-8db7-3bcf5c7f417f,8c52eab8-8dc5-4799-8cbe-61c496308b79,Africa,Sub-Saharan Africa,Eastern Africa,Kenya,KEN,KE,-0.023559,37.906193,,,, 17 | 77b2b25e-c7e9-489e-875d-35e846eb76ba,8cd4fbac-8541-4f02-b578-bcb0149e6a07,4ee2e45e-781c-48ae-86e0-f5a73637a569,Africa,Sub-Saharan Africa,Eastern Africa,Madagascar,MDG,MG,-18.766947,46.869107,,,, 18 | 9e1631a6-bfbf-499f-946e-9e2ff3628a2b,85ec05bf-84c8-4019-af5c-d390d650a50e,dc8f77c9-6245-4ccf-88b5-031c210d481b,Africa,Sub-Saharan Africa,Eastern Africa,Malawi,MWI,MW,-13.254308,34.301525,,,, 19 | c91c715d-e1c2-40aa-9d00-67d516301f08,01180a99-1828-4d33-9c62-f19b5552541a,57ec3198-34c9-4950-9527-8e841c57584d,Africa,Sub-Saharan Africa,Eastern Africa,Mauritius,MUS,MU,-20.348404,57.552152,,,, 20 | 793c76b7-b512-4f6b-bb95-9f83fa93b4c9,1b33b596-952f-4297-a9a9-7cc09877affe,5a4b9fee-28f9-4d97-9d40-f35fafc3bca9,Africa,Sub-Saharan Africa,Eastern Africa,Mayotte,MYT,YT,-12.8275,45.166244,,,, 21 | bb4fe098-c008-4006-a4fa-d09696865267,6cfe7a7d-49bf-4eaa-9678-761761de70ac,95c41c02-c8f3-4988-83ac-b4d997484c4b,Africa,Sub-Saharan Africa,Eastern Africa,Mozambique,MOZ,MZ,-18.665695,35.529562,,,, 22 | 73cf4064-e63d-4a7f-a53a-4ec270abe9df,edfe318f-9332-4c2a-bf57-96ad9dc9055d,0b0d81f5-4df8-478b-9837-7e4ca8ce880e,Africa,Sub-Saharan Africa,Eastern Africa,Réunion,REU,RE,-21.115141,55.536384,,,, 23 | 061d97f9-39c0-432b-a1e0-258b3723aa29,54fec0a8-70f9-4258-b016-e87fc4e79a0a,decb1841-e36a-470a-a158-a73cb53f3462,Africa,Sub-Saharan Africa,Eastern Africa,Rwanda,RWA,RW,-1.940278,29.873888,,,, 24 | 2d441aef-6988-4451-af1d-4ea15251fb60,23496132-ed20-488d-ab97-119339805cb2,c3daff55-eacc-402a-8521-592ac6979b15,Africa,Sub-Saharan Africa,Eastern Africa,Seychelles,SYC,SC,-4.679574,55.491977,,,, 25 | b88e2ed3-61bb-40e4-b60e-e51c55e55304,5dd58e8a-fe08-45df-9b42-2a3ba237654f,ac810b3b-5e9c-4e7a-9eea-2861ac2268dd,Africa,Sub-Saharan Africa,Eastern Africa,Somalia,SOM,SO,5.152149,46.199616,,,, 26 | 723d1f5f-494f-4796-b7a5-1a9bc2ea8fca,76d59a97-5c13-4eeb-bcf6-ece461c4724c,f137e1a1-375c-4222-a0c2-e63bb2467114,Africa,Sub-Saharan Africa,Eastern Africa,South Sudan,SSD,SS,16.34997,29.381307,,,, 27 | 9afdb622-65a2-4ae0-94eb-abdb13b7e71e,04b51364-687f-496a-a872-7578156460c5,f059e8ec-ed4b-4bf3-87b7-e4a278f65cf2,Africa,Sub-Saharan Africa,Eastern Africa,Uganda,UGA,UG,1.373333,32.290275,,,, 28 | 187f0c7e-4c89-48c9-89f7-1eb95f5f7ddb,6ea69153-56ca-47cf-b39f-563efdef7736,960d0e60-a866-411b-a522-541f5cb2f02e,Africa,Sub-Saharan Africa,Eastern Africa,United Republic of Tanzania,TZA,TZ,-6.369028,34.888822,,,, 29 | 47f1c480-3adc-4b6b-849c-e523c5b228f6,29ada03e-8a34-4c16-9375-449412858fc0,155e0b2d-89cf-4439-acca-07c7c37b4e4c,Africa,Sub-Saharan Africa,Eastern Africa,Zambia,ZMB,ZM,-13.133897,27.849332,,,, 30 | 40ac2dbc-fda0-4b00-9346-584ce526748e,061d2f76-7c63-4786-b358-60ef441cdbe2,e94f8f0b-0b61-49c9-8f85-8146df3d2460,Africa,Sub-Saharan Africa,Eastern Africa,Zimbabwe,ZWE,ZW,-19.015438,29.154857,,,, 31 | 6c91b0b2-091a-4f3e-b3ab-1156539229c9,06d2d633-accd-4af1-8616-7e4bbf55be60,4671679e-19d3-4969-bb9a-50ce2e4cedf9,Africa,Sub-Saharan Africa,Middle Africa,Angola,AGO,AO,-11.202692,17.873887,,,, 32 | 6f596ce9-a802-4532-8ed4-e21012d8ff41,78bb0de5-b44f-41b4-96c4-106db0206eea,c5d52a27-9e31-4025-b9ea-849a75964adf,Africa,Sub-Saharan Africa,Middle Africa,Cameroon,CMR,CM,7.369722,12.354722,,,, 33 | b03e408d-fa0d-4187-a626-ae47a375a49a,0670fb41-f8bf-4fa8-9415-6f1a648524cf,f16ea7cc-8484-45ad-817a-4b90946e9d7b,Africa,Sub-Saharan Africa,Middle Africa,Central African Republic,CAF,CF,6.611111,20.939444,,,, 34 | 7856cd6b-3425-46f7-9e30-9fdf42ad2303,02975170-0d5a-4280-8285-c3cfdc1ffebd,490baa5f-9254-490b-bd80-66f8da5732ed,Africa,Sub-Saharan Africa,Middle Africa,Chad,TCD,TD,15.454166,18.732207,,,, 35 | 2cce306e-c2af-4bbd-89e2-b7ddaac25c9e,94bd63c2-47b3-401a-9ab5-195d10e77bac,dfd0a23b-5283-4612-b7b3-c6152a879e40,Africa,Sub-Saharan Africa,Middle Africa,Congo,COG,CG,-0.228021,15.827659,,,, 36 | 4d55aefd-54c6-4145-9244-8226b8da96e3,f9b01801-7cb5-4a8a-9733-dc644b881ffd,323f6a93-96aa-4467-9dda-66341ed5265b,Africa,Sub-Saharan Africa,Middle Africa,Democratic Republic of the Congo,COD,CD,-4.038333,21.758664,,,, 37 | 33692fc5-5c93-44b5-aa49-80a090c3bfd3,35a75f9c-4131-4616-bb7f-06351d39bfb7,4bb69769-3769-475e-ba37-e0af822d2570,Africa,Sub-Saharan Africa,Middle Africa,Equatorial Guinea,GNQ,GQ,1.650801,10.267895,,,, 38 | bb101bbb-0635-4eb4-bdfc-212ec37f9d19,96bcc2aa-d189-4cc8-b669-07172d9058fb,5e240049-2d76-4bda-9c72-a51510650a62,Africa,Sub-Saharan Africa,Middle Africa,Gabon,GAB,GA,-0.803689,11.609444,,,, 39 | eb414e43-33c7-480c-8580-4beb61f67aa4,28d50bb0-3e70-4ad6-9072-1d2f5020b5bb,71b4c1e3-09d9-4006-9cd4-21723055aa68,Africa,Sub-Saharan Africa,Middle Africa,Sao Tome and Principe,STP,ST,0.18636,6.613081,,,, 40 | b413896e-becf-4fcb-9a02-47c5b9ff0bfb,335cd903-e477-4a0d-a7c7-73d6bfb097af,10da7477-a2f6-4d4a-b44b-ec70a57fb3f1,Africa,Sub-Saharan Africa,Southern Africa,Botswana,BWA,BW,-22.328474,24.684866,,,, 41 | 6e517434-5610-48f6-890b-f584986d8865,2f1bed18-4e2a-4913-9e64-0d08f26c82e2,a755337d-ddf8-484f-8de9-6df3479ead59,Africa,Sub-Saharan Africa,Southern Africa,Eswatini,SWZ,SZ,-26.522503,31.465866,,,, 42 | 63b7d128-fb78-4465-ac7c-791ed7d98815,4b51e57e-1095-4d48-86a8-be4ea559d2c7,e25f2f17-8c9e-40d0-8e58-43a4b7569682,Africa,Sub-Saharan Africa,Southern Africa,Lesotho,LSO,LS,-29.609988,28.233608,,,, 43 | 3ca1716c-88c6-4c1a-8dc0-d53940c15905,80d175f3-f5f7-4acf-9b07-32bb8fec9f19,71981afa-c171-4391-bf20-1b8f5cec2812,Africa,Sub-Saharan Africa,Southern Africa,Namibia,NAM,NA,-22.95764,18.49041,,,, 44 | d10be20a-5bea-4e03-ad3e-7cd31f4f0e33,0e6917c3-01d0-4fbe-b26f-29ffbbb572f9,2db1e652-0ac8-4cdf-ac40-ef716ddf687e,Africa,Sub-Saharan Africa,Southern Africa,South Africa,ZAF,ZA,-30.559482,22.937506,,,, 45 | 89006c04-5b55-4770-b42b-e9ea994d34df,7964c6d5-5a39-48ea-a0c6-e215316d3c11,fc1fcfe7-4a95-432b-9198-86cf570e3e4c,Africa,Sub-Saharan Africa,Western Africa,Benin,BEN,BJ,9.30769,2.315834,,,, 46 | f7739f6a-e741-4dfa-bd0b-c2803ccd4e49,c39ab6ad-5c81-4f0b-bca3-e7bfa1e6714a,0f8d6e63-a25b-4afd-b155-a5d87f6b68b8,Africa,Sub-Saharan Africa,Western Africa,Burkina Faso,BFA,BF,12.238333,-1.561593,,,, 47 | 7111313c-4bd0-46db-8c41-6b2c19d6c9af,12242ac0-0c4e-49c2-afba-7f5c5140270a,6e3c5b88-48fb-433b-9561-028b013989be,Africa,Sub-Saharan Africa,Western Africa,Cabo Verde,CPV,CV,16.002082,-24.013197,,,, 48 | f96ea3b4-4365-4f3d-8157-c256f89c60ae,b5c57370-fb77-4d27-a52c-2f5301911421,773b2588-6df8-4ee2-a1e9-1f2cbb5ebd80,Africa,Sub-Saharan Africa,Western Africa,Côte d’Ivoire,CIV,CI,7.539989,-5.54708,,,, 49 | 098c8cc0-3891-4522-99dc-0bce379d1674,a1ae5f00-46a6-4a46-bdec-91b49be024a5,e1e98d85-7f55-4177-a1d6-69911d875381,Africa,Sub-Saharan Africa,Western Africa,Gambia,GMB,GM,13.443182,-15.310139,,,, 50 | bafe86b0-8439-4bc5-a4bd-a1d9fa736b24,2144cb52-9bef-46ff-b629-d11d93ac7f1e,fcd7d0dc-5825-482a-a1a6-dc07600a6762,Africa,Sub-Saharan Africa,Western Africa,Ghana,GHA,GH,7.946527,-1.023194,,,, 51 | a8400fff-ce31-443e-bffd-8edd8d8d739c,0132a4d6-918f-40be-9c58-48246e814970,f121da37-6ae0-4163-8f7c-e163a1fe8425,Africa,Sub-Saharan Africa,Western Africa,Guinea,GIN,GN,9.945587,-9.696645,,,, 52 | a99430de-261d-4015-a286-fde735a53d87,fc58fd17-a4f0-492a-83d6-ed487478ad1c,b41ce233-08d9-43b3-9ee5-fd58979129dc,Africa,Sub-Saharan Africa,Western Africa,Guinea-Bissau,GNB,GW,11.803749,-15.180413,,,, 53 | f401680e-bc58-47ef-bc1c-45db00987572,8817b748-b382-47b9-b73f-0b641c76576a,ef3b130e-3dd6-45a2-8d20-c1479f15d9d1,Africa,Sub-Saharan Africa,Western Africa,Liberia,LBR,LR,6.428055,-9.429499,,,, 54 | f9ca90cb-9b3c-41c4-805f-31b7bc749dc4,57be436e-dd3e-40dc-83e1-3c1719dbad96,4268be82-c3fa-438f-9383-e4bd9c66d740,Africa,Sub-Saharan Africa,Western Africa,Mali,MLI,ML,17.570692,-3.996166,,,, 55 | 7e0f9b82-27fd-4aac-bc3a-ebbaca250d42,6287e76b-8d00-4423-a1e3-da378629459d,68cd4640-cd61-43f8-b94e-113e3d9873c8,Africa,Sub-Saharan Africa,Western Africa,Mauritania,MRT,MR,21.00789,-10.940835,,,, 56 | a79ed2c9-2e38-4d43-9c7a-e0833a1fa6fc,fc2bac4f-4c4d-458b-a682-927e087e896c,346ca128-1e8f-46d7-b6c5-db76df03848d,Africa,Sub-Saharan Africa,Western Africa,Niger,NER,NE,17.607789,8.081666,,,, 57 | 9d428c41-7536-44e3-be4c-a9207717c8cf,d53048e4-3d5a-4784-8900-2d6ab3753b38,57982ae8-e9f6-4a77-bd4b-a839ee65e457,Africa,Sub-Saharan Africa,Western Africa,Nigeria,NGA,NG,9.081999,8.675277,,,, 58 | 6bcbe5d5-4c76-4847-ad3f-72be06d487d0,a3c175dd-af9c-4059-8668-12b97075ec77,e8bcd901-2388-4ce6-96ab-594bd6ed0ce1,Africa,Sub-Saharan Africa,Western Africa,Saint Helena,SHN,SH,-24.143474,-10.030696,,,, 59 | a755198f-0a62-4e84-9298-57339783369d,653b8ab7-614f-4871-8c18-1267c4a8f21e,e4316599-e2d5-49e2-b97b-1103b6deb63a,Africa,Sub-Saharan Africa,Western Africa,Senegal,SEN,SN,14.497401,-14.452362,,,, 60 | 150ed52e-7eaa-44bf-bdaf-8d95bde9525c,81761ed2-a15e-47af-8c0c-deddcbda6b5b,6f6a40f5-aba3-4531-8e3f-e81ad25d87e0,Africa,Sub-Saharan Africa,Western Africa,Sierra Leone,SLE,SL,8.460555,-11.779889,,,, 61 | 949c6c85-87a3-4bc9-9046-123e0321f2e7,e62780a0-55b0-431c-8a5a-7652a4462532,60e12321-2786-4033-a10d-1561808dfcdc,Africa,Sub-Saharan Africa,Western Africa,Togo,TGO,TG,8.619543,0.824782,,,, 62 | 47648248-b620-4d01-8374-35f0efbc5a89,f667d6a3-9475-48fd-8a8d-65a36fdb2e2e,3bb593aa-9298-48a8-a2ee-d3d635a5fce3,Americas,Latin America and the Caribbean,Caribbean,Anguilla,AIA,AI,18.220554,-63.068615,19.4326296,-99.1331785,8.0018709,-66.1109318 63 | 9f482743-8f19-4999-b75f-d2f00f5f8dc9,9fb4c328-2b3d-42a5-b9e2-a39ec7409aa3,a09a61a8-a536-4eba-8534-cadeafaa0dd3,Americas,Latin America and the Caribbean,Caribbean,Antigua and Barbuda,ATG,AG,17.060816,-61.796428,,,, 64 | 4221d7f6-ae64-4f5e-a485-39fe7222393a,44403c77-7db1-48c9-99df-eadfb2fd6718,e5184d1f-6348-47e6-9fe0-c5d1cd7fa427,Americas,Latin America and the Caribbean,Caribbean,Aruba,ABW,AW,12.52111,-69.968338,,,, 65 | ccfa4848-6417-4cae-9dcf-a52c0b83dc7b,52ae6adf-f761-4c3e-822e-c22ff0af2f30,f752c8c9-34f2-4f3f-8693-80fce2f56a58,Americas,Latin America and the Caribbean,Caribbean,Bahamas,BHS,BS,25.03428,-77.39628,,,, 66 | 60588683-62f7-479b-b0ec-9e33a2ede229,26c42981-f869-4c77-815e-fc9afd3a4345,9ab3e31f-3009-4cef-a90c-b6fdd384da18,Americas,Latin America and the Caribbean,Caribbean,Barbados,BRB,BB,13.193887,-59.543198,,,, 67 | b7599901-5b93-4f4f-aae9-9c7e781cbb25,e8520b56-b5da-4c9e-9052-19377af32d9e,02572610-9a04-4fe7-bacb-593659b4d8b1,Americas,Latin America and the Caribbean,Caribbean,Bonaire,BES,BQ,12.191097,-68.249714,,,, 68 | f5e59fdd-e570-44a6-aebb-c5ce48b5f479,08fb875b-9d27-4fbe-b170-f2efa696ddd8,38c7aa3e-d6b2-4d7e-9649-2b2180cebf03,Americas,Latin America and the Caribbean,Caribbean,British Virgin Islands,VGB,VG,18.420695,-64.639968,,,, 69 | d4b1d826-0c1a-419d-bf1a-e002fa4966cd,4293c24e-6710-4e47-b8ec-321e5dc4cf3a,eebc582b-1717-455a-a983-1926ed330488,Americas,Latin America and the Caribbean,Caribbean,Cayman Islands,CYM,KY,19.513469,-80.566956,,,, 70 | 65d7aad1-dab9-4091-890a-8b22669f9a11,48439b47-44fc-45fb-9e9a-d0a12e3efe82,4da2915c-5e95-4e1d-bc0c-ea972aeffa2f,Americas,Latin America and the Caribbean,Caribbean,Cuba,CUB,CU,21.521757,-77.781167,,,, 71 | c3243d27-99ec-4696-94be-8c9ea406a93f,cc413c23-c6b0-414c-9f54-99af0312595a,9c5933aa-880e-4118-86db-885802a27dc6,Americas,Latin America and the Caribbean,Caribbean,Curaçao,CUW,CW,,,,,, 72 | 2382cd28-2090-4e24-8adf-e308a18b6fbe,802e039c-a155-4573-afed-b1dbfff8a35e,a69ae3b2-78e1-40dc-9624-494334136dca,Americas,Latin America and the Caribbean,Caribbean,Dominica,DMA,DM,15.414999,-61.370976,,,, 73 | c6e8b1b2-88d5-4486-86cf-c0e04cd3d9b0,44ba6496-ceef-4cc0-9f82-6ce2bfd4b9cb,21892fb5-cb1d-48bb-a014-f0a8ad3a4c56,Americas,Latin America and the Caribbean,Caribbean,Dominican Republic,DOM,DO,18.735693,-70.162651,,,, 74 | 6832a0aa-d2a2-4f98-bea2-46dbb818b7ee,5863cdf0-a533-4079-a11c-af090675301e,999ee1c5-e283-426d-a9d8-77b2efed6caa,Americas,Latin America and the Caribbean,Caribbean,Grenada,GRD,GD,12.262776,-61.604171,,,, 75 | f6807435-e714-43ee-bf89-559e63b4307b,987d353c-1527-4070-a711-eb3b57d3598e,4605b448-66ca-4f0f-a694-f5e9f8bdbf6a,Americas,Latin America and the Caribbean,Caribbean,Guadeloupe,GLP,GP,16.995971,-62.067641,,,, 76 | 2b220ea8-d535-4a39-b1c7-547cbc59fe10,e8a940be-fd2d-4d12-94ea-21ec63014611,7ec66f24-3b30-4598-88f8-afc8518c8f19,Americas,Latin America and the Caribbean,Caribbean,Haiti,HTI,HT,18.971187,-72.285215,,,, 77 | 22248d6e-afee-4921-b9a6-7ca82cf380e4,ae94275d-9764-4215-9a90-da2b142d4d52,0047928c-0e55-40fc-be58-61b659e6f7aa,Americas,Latin America and the Caribbean,Caribbean,Jamaica,JAM,JM,18.109581,-77.297508,,,, 78 | 276e4166-639d-48b7-a426-95f4184088e4,5f0fe6d0-b51a-4720-9760-351d08736bf8,67b9eb97-07cf-407d-a086-c0983a30382e,Americas,Latin America and the Caribbean,Caribbean,Martinique,MTQ,MQ,14.641528,-61.024174,,,, 79 | 9366b2cb-f52e-472d-9f4e-14cab1423637,92157775-fb10-42f0-8c04-24f0f689784b,d23f6d46-eb5a-45e0-a4e5-9030d598a275,Americas,Latin America and the Caribbean,Caribbean,Montserrat,MSR,MS,16.742498,-62.187366,,,, 80 | 909460ef-c3a3-4c5f-9daa-7d5c46dd0c2c,665415f2-106a-4267-b157-3faa943ddaa3,beaf2a9a-d2ec-4bfa-ac20-46f626bfef9e,Americas,Latin America and the Caribbean,Caribbean,Puerto Rico,PRI,PR,18.220833,-66.590149,,,, 81 | c0bb8019-0a11-44f1-8fb7-87772e28f7f5,ce3aacdf-ba6f-4c88-b417-48d45a8816d7,bd4957f9-9817-4559-963c-e7e1d8fedc9c,Americas,Latin America and the Caribbean,Caribbean,Saint Barthélemy,BLM,BL,,,,,, 82 | be983178-6b8c-431e-8674-09d3178d53c2,91d8597a-fe1c-402e-ae8f-3267d5d5e768,f0cafbc2-78f4-46dd-a201-b18d5d9ffdc4,Americas,Latin America and the Caribbean,Caribbean,Saint Kitts and Nevis,KNA,KN,17.357822,-62.782998,,,, 83 | 4e231527-d415-433d-b8bd-6f3b7a844dd1,b61c2d8b-e7e5-4b42-b276-6c00f6bc98b5,39ec44d9-d153-495c-a331-306e90e33950,Americas,Latin America and the Caribbean,Caribbean,Saint Lucia,LCA,LC,13.909444,-60.978893,,,, 84 | e1088c70-cb9d-4a90-acfb-d86af31d9668,ba8f2b76-f96a-45ec-9d2e-ff1f1764a873,b2f46243-6c04-4d4c-89ae-323ea8e59efb,Americas,Latin America and the Caribbean,Caribbean,Saint Martin (French Part),MAF,MF,,,,,, 85 | 4192c8e2-d17a-4edd-adea-a010d257a418,f34bb4df-3968-4fc5-bafc-1118d9a1d202,bf7993fc-d766-4e37-ad29-699f56e8338a,Americas,Latin America and the Caribbean,Caribbean,Saint Vincent and the Grenadines,VCT,VC,12.984305,-61.287228,,,, 86 | 6e8b6a67-e9bb-445a-a0a4-a0a3e657200a,faf191c4-cfbc-492b-93e6-70fa7835e61f,ad4b36ef-a722-4db5-8c89-cdccf7b209d1,Americas,Latin America and the Caribbean,Caribbean,Sint Maarten (Dutch part),SXM,SX,,,,,, 87 | 14961968-a713-45fc-8fed-6f5e40136b79,61dd090a-62e4-4e86-9b9f-9cc47b2fa456,792e86ef-56ea-425b-9e90-a5d6751c1137,Americas,Latin America and the Caribbean,Caribbean,Trinidad and Tobago,TTO,TT,10.691803,-61.222503,,,, 88 | 2a2aca11-012a-419a-9071-eea73d5a5bb3,a6774ae5-81a6-436b-9641-884150ea1a40,d8b0d62b-1a25-48c5-9b11-fa6b98e77033,Americas,Latin America and the Caribbean,Caribbean,Turks and Caicos Islands,TCA,TC,21.694025,-71.797928,,,, 89 | a2cefed0-3ef8-41b1-857e-3b35f30285dc,15177398-43f7-4a20-a667-9dd154b9c1a2,6711fc2f-f9ee-44af-852f-c571478ff324,Americas,Latin America and the Caribbean,Caribbean,United States Virgin Islands,VIR,VI,18.335765,-64.896335,,,, 90 | dd5e476b-b571-4ade-9359-a1f8c37fd5a0,403adb80-3917-419c-ba95-9a6019e2da65,4539837b-8fca-4dc2-8d76-34ed6a0dbfb0,Americas,Latin America and the Caribbean,Central America,Belize,BLZ,BZ,17.189877,-88.49765,,,, 91 | 353a3613-ea1f-42e0-b40f-b11d239ae642,6dd36274-effc-4c4f-a809-e5ca65fbf4f4,b9dd977d-6954-45d7-b50b-f8bd907950bb,Americas,Latin America and the Caribbean,Central America,Costa Rica,CRI,CR,9.748917,-83.753428,,,, 92 | 0d79c3a7-523e-4e05-8782-a6572d10ff6e,d41bb72c-dff1-4846-a20c-c58895b0fb98,b844bfbd-b6b7-4f4a-b9b7-db19b8c8dea9,Americas,Latin America and the Caribbean,Central America,El Salvador,SLV,SV,13.794185,-88.89653,,,, 93 | a5c12716-0b26-4c9a-a5e5-1e21814c5cec,b7228e55-5858-46d7-8c63-c8afbd5b4d36,0e2e003f-b241-4d07-83db-aa9f782bb01e,Americas,Latin America and the Caribbean,Central America,Guatemala,GTM,GT,15.783471,-90.230759,,,, 94 | 7d6603dc-b376-4c54-a8f9-9ed51e1e9aa0,cf0412e2-2657-413a-beb8-d42d71a6b5d1,e3022285-06be-4c6e-af93-3a8e8558f718,Americas,Latin America and the Caribbean,Central America,Honduras,HND,HN,15.199999,-86.241905,,,, 95 | 45f0932f-a975-4577-9bf4-b09431e04a71,f4a113dc-2d5f-4f26-8ecc-2c6807ef35ee,4f8b5528-7275-42f4-8db8-e2192661eff9,Americas,Latin America and the Caribbean,Central America,Mexico,MEX,MX,23.634501,-102.552784,,,, 96 | ea0d54ef-2137-44ef-9893-51f07bf834fd,92a736c3-c7e5-4a5b-8b1b-01c7a271d5e3,883da9b7-7e3b-4127-a760-e64deaa3fcc4,Americas,Latin America and the Caribbean,Central America,Nicaragua,NIC,NI,12.865416,-85.207229,,,, 97 | 84e95367-9f05-4e89-8954-762ac91298ab,f5752ac2-b305-43db-bdb1-96038cad5393,bbfc30a7-e244-4195-976c-54fd629bde1c,Americas,Latin America and the Caribbean,Central America,Panama,PAN,PA,8.537981,-80.782127,,,, 98 | e1918f7d-d2ac-4d13-8fd1-cac64ca0688e,36103a1a-7ff3-4122-bab7-c2bd7506a49a,992b40a7-950a-41ef-88fc-bf158b6bdacb,Americas,Latin America and the Caribbean,South America,Argentina,ARG,AR,-38.416097,-63.616672,,,, 99 | 54682043-d48f-4d88-8cf1-ad0245746346,56eb0147-2b4a-4f3e-b366-7c6cfc4a4b67,5627253a-884c-4dbe-a591-9a11a3838708,Americas,Latin America and the Caribbean,South America,Bolivia (Plurinational State of),BOL,BO,-16.290154,-63.588653,,,, 100 | 9ea7edd4-e9d9-490e-add6-d13353cd6fd8,f7f13224-7eab-4791-85c3-a0750f1c3001,61744517-44b0-4c1e-86be-6914a1aa30a3,Americas,Latin America and the Caribbean,South America,Bouvet Island,BVT,BV,-54.423199,3.413194,,,, 101 | 1e6a7e49-b169-4d67-ac45-d4058f7bc86b,98227aba-46bc-4e0a-a137-f04788e0e52f,c7135237-6dca-4f59-9a15-43fd8f20772a,Americas,Latin America and the Caribbean,South America,Brazil,BRA,BR,-14.235004,-51.92528,,,, 102 | 0a8cd3e8-f2b1-4d1f-b111-34ee838a11db,769afb0f-4ff5-4545-a2c5-bebe06ec407a,21ef416a-1ca3-45f6-b3d7-b7251b271b39,Americas,Latin America and the Caribbean,South America,Chile,CHL,CL,-35.675147,-71.542969,,,, 103 | 0389bfc6-4d55-4a56-8f2d-609c4b0584e2,646ade63-b366-475a-876c-66326f89cb76,9fae6d88-590c-4b14-9958-f8564da106d4,Americas,Latin America and the Caribbean,South America,Colombia,COL,CO,4.570868,-74.297333,,,, 104 | 8e4e0d3f-cea2-4aa1-a41a-3eb7eb7f894c,7feedf6d-cebb-481e-b1a3-c2d25c28411a,37aa4b9b-0ea9-4732-b8a4-e3b1d08b9d8c,Americas,Latin America and the Caribbean,South America,Ecuador,ECU,EC,-1.831239,-78.183406,,,, 105 | fbeb30fd-8082-4611-9a59-803ed01d5b5e,7ddf1aa4-7fd4-4da7-83f3-1d13a4841279,4a87a454-8fcd-46bd-b421-df3ef4a26f05,Americas,Latin America and the Caribbean,South America,Falkland Islands (Malvinas),FLK,FK,-51.796253,-59.523613,,,, 106 | c60db402-ac90-4168-9db6-6e9fa063c400,3041ce57-3208-44ac-801c-e2a2206696fd,9eb43d13-cbf5-4676-95b5-0edb7d39011c,Americas,Latin America and the Caribbean,South America,French Guiana,GUF,GF,3.933889,-53.125782,,,, 107 | 9372b752-745f-4f8d-8615-1e718368e35e,ca7e2ba6-4eba-4ccb-90b3-478703b5a991,cd1c6ea0-d789-4ec7-9d5b-502f85a0e6fa,Americas,Latin America and the Caribbean,South America,Guyana,GUY,GY,4.860416,-58.93018,,,, 108 | 2e9ba66e-7c61-491d-a854-8f73917cbe4e,4803d133-0c20-4224-8eba-0ea87c54c08a,cf2485ff-f251-444c-9e51-6cb84b61fbb8,Americas,Latin America and the Caribbean,South America,Paraguay,PRY,PY,-23.442503,-58.443832,,,, 109 | dd47dcb5-f63a-48a9-84e5-7ef46fec944b,3f7041ea-1a12-4fbc-ac38-8b37cab9efa5,8d70e6cf-5296-4059-b63a-6f0cb742e583,Americas,Latin America and the Caribbean,South America,Peru,PER,PE,-9.189967,-75.015152,,,, 110 | 54657419-6bc8-4c73-9050-755ad30d7226,6630416c-65e4-4cd4-a3fb-bb09f34bde1f,01daac57-2783-4c4b-96a7-8ba1b7e5c1f0,Americas,Latin America and the Caribbean,South America,South Georgia and the South Sandwich Islands,SGS,GS,-54.429579,-36.587909,,,, 111 | caedd95f-f530-4b7a-8ebf-0a7f83ae1992,d8050876-00bc-4f91-98ca-c7a4e2ca3ecf,14bb76ec-46a5-438b-800d-4326c439d510,Americas,Latin America and the Caribbean,South America,Suriname,SUR,SR,3.919305,-56.027783,,,, 112 | b4f4c1dc-0bc0-4ac6-8906-c0b4674c75c8,c901c159-9a22-49af-b1d6-3213d4098b68,9b749617-9d6a-4dd3-bec4-ab91eaf8533b,Americas,Latin America and the Caribbean,South America,Uruguay,URY,UY,-32.522779,-55.765835,,,, 113 | d4379416-3155-4101-b93b-d93c71a5ac49,99d900f1-d0e3-4358-bcc0-f6936984b85b,13c5f8f3-98e9-42a1-ad0f-a3bf7fc6365e,Americas,Latin America and the Caribbean,South America,Venezuela (Bolivarian Republic of),VEN,VE,6.42375,-66.58973,,,, 114 | b0c54648-656f-4b55-92a8-fa475054466b,75a5b491-3fb8-4176-a572-0e84c7e352bc,5afe97de-1464-4315-b80a-01463367f1bf,Americas,Northern America,,Bermuda,BMU,BM,32.321384,-64.75737,,,39.7392364,-104.9848623 115 | f30ea18b-14c7-4ed4-9781-a08eb45190bf,9235bcf6-ee71-4174-baec-2255f6c34d2a,f1ff7040-cde1-464a-a6fd-7f762f72b735,Americas,Northern America,,Canada,CAN,CA,56.130366,-106.346771,,,, 116 | 22267718-6f32-471a-966e-04e81e30f651,355f1593-0f1a-42a1-abb4-1e755cd25111,131cdc80-5cc0-4e41-91a0-0ac7b771d378,Americas,Northern America,,Greenland,GRL,GL,71.706936,-42.604303,,,, 117 | 7aa36b80-d467-4aca-8024-f83d64c01d0b,a8983fd2-93d2-4390-95fb-fd9c53a6fede,6c3907c8-2b37-4e17-8304-135b9232f368,Americas,Northern America,,Saint Pierre and Miquelon,SPM,PM,46.941936,-56.27111,,,, 118 | 6f0e1318-3757-4b6f-ba30-dbb05bba91ca,b0592458-fd70-464a-8689-93decfc4e8d4,dbac05fd-3616-4d7c-9bcd-e6b867c1f5be,Americas,Northern America,,United States of America,USA,US,37.09024,-95.712891,,,, 119 | a523412a-4cac-415a-b7d6-d8c6a8b7334b,29c0ad64-9879-4c4d-a15a-d7b147b49619,b52c3cd6-55f6-4f66-8a55-7b5e4646a57d,Asia,Central Asia,,Kazakhstan,KAZ,KZ,48.019573,66.923684,37.254283,83.217591,38.861034,71.276093 120 | 0714ece2-62ef-4f82-840c-20c73a3805a3,08d1ca0d-fa0f-4a94-b5fe-7802864a566e,814a0aed-8d55-4793-b350-3eab41ef32d2,Asia,Central Asia,,Kyrgyzstan,KGZ,KG,41.20438,74.766098,,,, 121 | 2adb1745-278b-4c5c-a1d6-c55ffba1b025,d126738b-d931-4ace-b29b-605b1d02b7a6,0a21c122-4967-4294-a254-bc431548552e,Asia,Central Asia,,Tajikistan,TJK,TJ,38.861034,71.276093,,,, 122 | a84b7911-2a4d-43a8-bfca-397a3650fe2e,5a6bfe10-ede8-4390-88bb-4105fb381741,9101eb9e-2f21-4b17-a7d6-14f3dc22bbbe,Asia,Central Asia,,Turkmenistan,TKM,TM,38.969719,59.556278,,,, 123 | 855fcd71-b229-4ed4-b9af-1a494710a4da,cc4942ff-f377-41d7-a5bc-ab4a7c78f08b,b21c0b51-dd6d-46a1-9296-86ed0a61d5f9,Asia,Central Asia,,Uzbekistan,UZB,UZ,41.377491,64.585262,,,, 124 | 22b6819c-4446-41ce-9911-84c75b54c2ce,2ac93082-4d7e-401c-847a-f74e6031d38e,bce7047c-c986-4601-9395-d46f577ce237,Asia,Eastern Asia,,China,CHN,CN,35.86166,104.195397,,,, 125 | fd4ea217-09c4-4ba1-b175-8697cba087ca,c088d628-bb06-435b-9e8a-3e92638cd96e,31e5b322-0804-4cb0-812a-f44cf17110f6,Asia,Eastern Asia,,Hong Kong Special Administrative Region,HKG,HK,22.440384,114.098975,,,, 126 | 15018376-c54a-4dd2-b1ba-21d0e77b99c0,ef610ce8-a695-4d5f-97d2-c9f71b71809a,7ed83b05-7171-4bfb-8380-0d0728367f3f,Asia,Eastern Asia,,Macao Special Administrative Region,MAC,MO,22.158061,113.556447,,,, 127 | 75792790-63ce-4da0-ab47-5f56d8b6974c,3929ead7-7a98-48f7-86c5-3ce27256130c,a6cadfda-9224-49e3-bc67-f715c19c3fdb,Asia,Eastern Asia,,Democratic People's Republic of Korea,PRK,KP,40.339852,127.510093,,,, 128 | 4d758499-508d-4ec2-8d1e-11472b8da8ed,548236bb-ba90-4acc-87d8-fe196af753b0,fe64f4cd-2d3a-4fe6-aaee-01aab011b0d4,Asia,Eastern Asia,,Japan,JPN,JP,36.204824,138.252924,,,, 129 | 7da15eef-7995-419f-9686-4eb6d6c06a9b,974e7efa-66cc-458f-9d9a-cc74ae9c8bf6,489a5be3-5051-42e6-a146-45e20704a410,Asia,Eastern Asia,,Mongolia,MNG,MN,46.862496,103.846656,,,, 130 | a3aa5d51-8a17-485b-b2f3-bed8a55e3ed0,2c5b4cba-a062-41cd-8e3f-3be053c5d133,69b73a4d-de23-46cc-b870-326ba940bba0,Asia,Eastern Asia,,Republic of Korea,KOR,KR,35.907757,127.766922,,,, 131 | 971084c5-f25d-49fd-89f8-5193eb04b47e,459fe292-bc20-47c8-9502-efaf624c0466,d3a4164a-770f-4e67-aa4f-7285c908ff0c,Asia,Eastern Asia,,Taiwan,TWA,TW,25.105497,121.597366,,,, 132 | 94c17b80-a6d2-47c9-b79f-336ac2139a2b,585445d4-0276-4209-b2fa-21e9c8c533d7,c9f7059a-0ed2-4307-a30b-e20368faff59,Asia,South-eastern Asia,,Brunei Darussalam,BRN,BN,4.535277,114.727669,,,, 133 | 9a1f8604-deba-4366-bcd6-40195b783043,c9e774b8-51c3-4710-a047-29d43dc4069b,e3598ce5-efab-429e-b41b-88b90aa389c0,Asia,South-eastern Asia,,Cambodia,KHM,KH,12.565679,104.990963,,,, 134 | 1dd6dc03-68ba-4d49-9bc5-deed4453a19e,a25c9b59-7944-49b9-a5d5-effa7b623416,69000f30-9b2c-4d74-b6fc-4c1875d15db0,Asia,South-eastern Asia,,Indonesia,IDN,ID,-0.789275,113.921327,,,, 135 | c9af8f92-ed99-431e-849e-addbbe1eb695,6f745716-834f-4014-8a10-a5841663e1f5,de45a6fb-e1f1-4053-a480-d498882e11da,Asia,South-eastern Asia,,Lao People's Democratic Republic,LAO,LA,19.85627,102.495496,,,, 136 | 50a32e6c-ceea-4141-8b94-3ca86c8c7d9d,388c9839-0809-4e14-a76f-f21a55f53af8,c81cae92-fa49-4dd9-9329-80ecd503e134,Asia,South-eastern Asia,,Malaysia,MYS,MY,4.210484,101.975766,,,, 137 | 24562cfd-b48c-4b32-975e-8c11c0329f15,7a76eb69-d7a2-442d-8a42-ab8139e131df,4145b9ec-ee0a-4d35-afb9-9b5196e846d5,Asia,South-eastern Asia,,Myanmar,MMR,MM,21.913965,95.956223,,,, 138 | 12389615-926a-4288-8042-1d283ec232e8,21807633-f4e1-4adb-809e-d0cb7ed783e5,9c1e3039-90a6-481c-b88f-0a587dcb4ae3,Asia,South-eastern Asia,,Philippines,PHL,PH,12.879721,121.774017,,,, 139 | f9b82862-67d8-48be-8d9b-682b45137300,8bbc398c-016b-45a0-8f08-66696e00d12b,dc36e8c6-435b-4f06-9915-7dbb584fff47,Asia,South-eastern Asia,,Singapore,SGP,SG,1.352083,103.819836,,,, 140 | 38ebc30e-c6b3-480f-9ccd-3b713baffbf0,0ebb39fb-02b8-4998-ba7c-dae8f3680252,60e63c7c-8084-4e93-9c11-e9dab05d6ebb,Asia,South-eastern Asia,,Thailand,THA,TH,15.870032,100.992541,,,, 141 | 92995c54-af7e-450b-9e63-e5af5761616c,b61b94a7-a214-4edf-afc0-1a86da37474c,4201dceb-1bfd-4a37-b52e-067a2b227cff,Asia,South-eastern Asia,,Timor-Leste,TLS,TL,-8.874217,125.727539,,,, 142 | 1436255d-d4e7-4b58-9918-703f3d986aef,1679b1e1-9fe5-4391-81c8-b62cbeb7546d,d32bae97-5a06-4eb8-8841-0804f4901459,Asia,South-eastern Asia,,Viet Nam,VNM,VN,14.058324,108.277199,,,, 143 | 39d1247a-822a-41e6-9a02-6cc088b0e2a0,2d7147c8-98a6-4cb6-b2a3-2f7c4f9b1479,2af22167-c50e-41fb-91dc-ca0225a61a5b,Asia,Southern Asia,,Afghanistan,AFG,AF,33.93911,67.709953,,,, 144 | e79a9e66-1951-439b-8f32-c18df8fb05dd,d5a6d888-71e4-4776-8323-39d6beff1a2f,ceff68c9-46ab-4e5a-a1ec-c13b8aad6cd1,Asia,Southern Asia,,Bangladesh,BGD,BD,23.684994,90.356331,,,, 145 | 3e5a1fbf-d22e-4afb-8764-fa3d6c0236a6,35a49d06-dd3b-421f-8a54-5d3d87ab4b27,cdf6dbd7-97f1-45a9-9a6f-f228898c4384,Asia,Southern Asia,,Bhutan,BTN,BT,27.514162,90.433601,,,, 146 | 3482577a-2409-423f-9bbc-aa0e0b8b7659,d2d851fe-3861-4d14-bfa0-12fc33fe78da,7c193f95-f96b-42eb-8569-0834349b1bba,Asia,Southern Asia,,India,IND,IN,20.593684,78.96288,,,, 147 | 0ae67ca0-be5a-48ae-9826-1c680d103198,58a84261-fecd-4a50-bc74-47fded14b197,79c4420c-f8ed-4757-a2d8-02f4f0e1d0fe,Asia,Southern Asia,,Iran (Islamic Republic of),IRN,IR,32.427908,53.688046,,,, 148 | 69de9207-5612-423f-984f-ec9b7b2d398e,f5738d02-1521-49c5-9bac-c62c12e0b82a,c843171a-2575-45fb-af3b-df89a8f21718,Asia,Southern Asia,,Maldives,MDV,MV,3.202778,73.22068,,,, 149 | 6c6bbf43-30f3-4d31-9eee-2b84da758634,59295d89-f0e1-4890-a99d-238eea21a7ff,5bc738ec-59fa-4d6c-9fd0-0f694e66474c,Asia,Southern Asia,,Nepal,NPL,NP,28.394857,84.124008,,,, 150 | 391ca0f5-0c16-47f7-a4ac-51203bd1a336,4bbc4b6d-1b0d-450a-b95a-27686e36d4a6,1d159ef7-392a-49b3-8ca6-b51621e6bec8,Asia,Southern Asia,,Pakistan,PAK,PK,30.375321,69.345116,,,, 151 | 3f27549a-f925-461e-a559-aeeaa4a8e017,a100b9e5-4080-4117-aecb-42f3505e7946,8c00bd48-4dc0-4b3f-b9b3-918cf69319af,Asia,Southern Asia,,Sri Lanka,LKA,LK,7.873054,80.771797,,,, 152 | bcda2e40-b902-462e-9210-1e182ae203da,9371a3ed-2c3d-4ed0-9cf9-191e8b71b9a3,452cf041-37ff-4902-9b4c-f268e73b9861,Asia,Middle East,,Armenia,ARM,AM,40.069099,45.038189,,,, 153 | 432dca33-e1a3-45d2-9c64-3868bdf08429,cc5643e2-6cd5-40ee-b787-397b5a6089c6,8538e405-3e1f-4909-a660-10e105956336,Asia,Middle East,,Azerbaijan,AZE,AZ,40.143105,47.576927,,,, 154 | f7c817db-4f5c-429b-88ea-880060f7aec4,b451b589-7b64-4e40-a48c-6b78ca7f6f97,30851763-bcd0-493a-bc8c-68899a234d34,Asia,Middle East,Arab States of the Gulf,Bahrain,BHR,BH,25.930414,50.637772,,,, 155 | 936e75c8-596a-4d98-919e-ea7059d02e23,107820d0-9ddf-4564-8dcd-ad89ad565eb6,6564c702-400c-456d-9260-7f080c1add22,Asia,Middle East,,Georgia,GEO,GE,42.315407,43.356892,,,, 156 | 2e200c00-bc51-4747-a47e-0c3a24f04818,dd61a124-f619-4198-9d4d-c6695dc0b8d6,9dcdad6a-08fa-4956-806e-61ef6472b918,Asia,Middle East,Arab States of the Gulf,Iraq,IRQ,IQ,33.223191,43.679291,,,, 157 | 17a5f05e-a7df-4310-99c5-ad7d9b26fb5e,8c9d775d-63e4-4ddb-90e5-fd8accb9b2f3,e9cbb2ff-9bba-4ab8-91c0-2a02bb2ac1ad,Asia,Middle East,,Israel,ISR,IL,31.046051,34.851612,,,, 158 | 01e8f73a-fa43-4a22-95d9-4d91f99ccc36,612642e2-6c70-4ae2-bb23-92de1bf83510,19c4553f-fc87-477c-aed4-c6a5be3199b0,Asia,Middle East,,Jordan,JOR,JO,30.585164,36.238414,,,, 159 | e04f867b-71c4-48cd-b410-f1b8dd258a69,b919b016-4662-4f6e-84eb-6a13813126b2,06d56e94-1f6e-4806-b35e-be7e5d5ac04f,Asia,Middle East,Arab States of the Gulf,Kuwait,KWT,KW,29.31166,47.481766,,,, 160 | 93130817-6446-4cea-9af4-b8a74f29ab78,5919d4c6-f87b-4c4c-b7c0-9dee99af47d8,efa50d4d-4964-482d-9ba0-9335afff830f,Asia,Middle East,,Lebanon,LBN,LB,33.854721,35.862285,,,, 161 | 39f9c037-f0d1-40f1-92d2-7c5c976030e6,9d87894d-1237-4526-9c79-6e69db04a5b1,56d85d02-e6b0-4d9f-a7a4-78256576d5c0,Asia,Middle East,Arab States of the Gulf,Oman,OMN,OM,21.512583,55.923255,,,, 162 | 80393b93-9606-468c-9cfe-863b3c30967a,0af12719-dd4a-45f6-b577-b9420084d87f,e48bc40f-705c-4aa2-a1ca-2467af4637cb,Asia,Middle East,Arab States of the Gulf,Qatar,QAT,QA,25.354826,51.183884,,,, 163 | e6df0b8e-aca7-4fa6-8b09-9c4b111af3af,0e33e348-aa90-4068-9951-0200cf1ceb15,ecfffc7d-cf77-496d-9678-5bc55ac9637c,Asia,Middle East,Arab States of the Gulf,Saudi Arabia,SAU,SA,23.885942,45.079162,,,, 164 | c5ab498d-2b16-4f20-9aa9-2afbd037d2ec,6f32bfec-16cc-4098-b6bc-daf2da890841,f1c01537-f443-4d98-8a1a-94dce65d8a51,Asia,Middle East,,State of Palestine,PSE,PS,31.952162,35.233154,,,, 165 | b45fbc7a-cce5-449b-98b3-52770dd8d758,a4767181-9abb-48a2-ae7f-845f4b9a4cbf,66e2d6bc-026a-4e09-97b8-a9a6c2c1b208,Asia,Middle East,,Syrian Arab Republic,SYR,SY,34.802075,38.996815,,,, 166 | 3a758720-79f1-4959-99fe-f39c6b9a9d08,a163d667-0e49-44ce-a6ee-6d89437f2a0e,147c2fcb-6746-4af6-8534-802578414d54,Asia,Middle East,,Turkey,TUR,TR,38.963745,35.243322,,,, 167 | bd09a640-599c-4a68-97ad-9dbe14993087,b5405efb-fcec-47c0-a814-82854f24edc2,d6ff0834-cc14-46d0-b4e2-534d940fcade,Asia,Middle East,Arab States of the Gulf,United Arab Emirates,ARE,AE,23.424076,53.847818,,,, 168 | c7c23e69-48f8-4a29-a9d4-5ad0376cce23,958156e7-f348-407d-b4aa-ecd414836d9b,412a7f65-1b53-4e74-b90a-01d322df4065,Asia,Middle East,,Yemen,YEM,YE,15.552727,48.516388,,,, 169 | 1079ae29-320a-4d6f-80f7-ddf6517cbf4a,ae9f19ee-5faf-4bcc-b48d-80ae92d9ff98,c158c6f7-8c48-4018-974d-6ff3091bb5c8,Asia,Middle East,,Cyprus,CYP,CY,35.126413,33.429859,,,, 170 | 7eff2453-313b-4a54-9178-efb1d8ae5c9c,9dbd67a0-5ed6-4f3f-81c7-886c8918f3ee,adf6ce51-5662-4b23-9354-b03a0954f4bf,Europe,Eastern Europe,,Belarus,BLR,BY,53.709807,27.953389,,,, 171 | b2e6db8b-1fe5-4e08-bf5d-4b1a7e451654,532dcf18-9392-4721-b41e-672a5ea7aa73,a28d8a76-087a-4758-a4cf-f05779293588,Europe,Eastern Europe,,Bulgaria,BGR,BG,42.733883,25.48583,,,, 172 | 70309c35-8f28-40e4-ab65-e9686deccdab,3b47adbf-0615-4567-9f77-26e1acd98c5a,250f8a47-8cb5-4262-a8e8-4b46cd9704eb,Europe,Eastern Europe,,Czechia,CZE,CZ,49.817492,15.472962,,,, 173 | 7ff67635-4e16-442a-a6ea-3a2ee65c52ae,42c85855-5215-43c8-a2f5-6aaddf9cb872,56c0f5ae-6fdf-43eb-9742-c1f85eba40be,Europe,Eastern Europe,,Hungary,HUN,HU,47.162494,19.503304,,,, 174 | 05ea9c16-f028-4841-8c25-62fe627f88b9,f42ad576-110f-457d-bd2e-e87bb02852b1,3ac13daa-60e5-41c1-923c-92e2ec70e823,Europe,Eastern Europe,,Poland,POL,PL,51.919438,19.145136,,,, 175 | f4d1d07b-6e70-4ebb-937b-489abfad6db3,6b0e5022-f9b9-48b4-9b59-e3023b255395,04f27d08-1c09-40b1-aff0-55203803383c,Europe,Eastern Europe,,Republic of Moldova,MDA,MD,47.411631,28.369885,,,, 176 | e80ec8ac-5fe1-43a8-8546-b7f43d1b9bf2,9a172cd1-2c90-4865-aa13-b70a1ebbf9b3,e6a239c8-9e41-4dec-95ab-45c13981a57b,Europe,Eastern Europe,,Romania,ROU,RO,45.943161,24.96676,,,, 177 | 4db721db-4d3d-4efd-b4f6-a4609db476d3,5ad5f00f-89c8-426c-b4ec-0dfbab185fcc,3e45f29a-3269-491f-ac9d-5e680db683b2,Europe,Eastern Europe,,Russian Federation,RUS,RU,61.52401,105.318756,,,, 178 | e52c1902-e17d-4c2c-9747-ff8bb1ef52d9,082178b7-1829-4c3d-94b1-b92e93a8cd65,e892e333-ba6b-4786-941b-380700939f90,Europe,Eastern Europe,,Slovakia,SVK,SK,48.669026,19.699024,,,, 179 | 5f707468-363b-48c1-b3dd-6be54233f9f9,c33505b2-1e5d-4466-9842-0ec1f1217a68,e5f054fc-fc63-46f3-8d63-1f93e0cb7801,Europe,Eastern Europe,,Ukraine,UKR,UA,48.379433,31.16558,,,, 180 | c089efd6-1a12-4855-b66b-a21d1845cac4,747340b9-e1b3-4d8c-a102-a595d5a44327,dcb05beb-a641-46cd-9401-ea169da12034,Europe,Northern Europe,,Åland Islands,ALA,AX,60.15205,20.291594,,,, 181 | decd7ba0-39bb-4457-b0a3-d16440ab1b69,d12b3060-56c9-4454-b8e6-7140f8fe308d,53d199ef-6b3d-46be-873e-f3fb659d0795,Europe,Northern Europe,Channel Islands,Guernsey,GGY,GG,49.465691,-2.585278,,,, 182 | 7cf0e28e-d39c-4fbb-832d-fd94d702b3a7,247c9e33-c37f-422a-8f9d-6fb230d12a54,b56f8137-dc70-48a3-b3d3-847f49687c9d,Europe,Northern Europe,Channel Islands,Jersey,JEY,JE,49.214439,-2.13125,,,, 183 | c3377ca8-ee34-4d80-a10a-7f4d07c9e330,4ad34c76-985e-43d3-b42d-1bb45c6e5178,5b1a1ef6-07a7-4d71-9ae3-6949959deecc,Europe,Northern Europe,Channel Islands,Sark,CRQ,CQ,49.463533,-2.561737,,,, 184 | 43a9d723-4cbe-43ea-ab4a-1b44ae92ebb9,46e20497-676f-415b-beec-969ecf97e426,757b3812-ae65-47b1-a0bb-0bec356e14ce,Europe,Northern Europe,,Denmark,DNK,DK,56.26392,9.501785,,,, 185 | 2fb42732-15c1-4d72-bbb3-6d05ff83f03f,8727b60d-ce20-4027-840e-b754edf5cb7e,de50daff-5875-4ca7-b686-0dbf86739857,Europe,Northern Europe,,Estonia,EST,EE,58.595272,25.013607,,,, 186 | 1abd113b-ed47-46ab-905a-67589d5bb6dd,17cdba07-a9f0-428c-a703-416467fe4777,41fca427-3cff-4cb8-b79b-cdac69fc369a,Europe,Northern Europe,,Faroe Islands,FRO,FO,61.892635,-6.911806,,,, 187 | 1b63b30a-967a-4344-95cd-caa1584c7a7c,83e85fcf-6c71-48d9-aa19-0b2a30bcba58,d7108c88-7d9c-4638-b249-39d4699c4af9,Europe,Northern Europe,,Finland,FIN,FI,61.92411,25.748151,,,, 188 | d9f5aafd-74b0-498a-8af8-d9797c7af1f8,26126807-e4d7-42af-92a3-df5821eda225,87533d23-f279-442d-a26e-7d75be90b51f,Europe,Northern Europe,,Iceland,ISL,IS,64.963051,-19.020835,,,, 189 | e22f619a-2a24-4400-9592-4fe55fcba76f,f67d2050-5086-4b8e-b497-d3f462475e14,626f112c-73ea-454f-aac6-f9b0916f7d03,Europe,Northern Europe,,Ireland,IRL,IE,53.41291,-8.24389,,,, 190 | 8c32d03b-d738-4f77-a572-711937d6f22b,17bbc249-936f-49fe-93f6-72e5251ced0d,322c8f91-06cb-43ff-badd-36a601187c7d,Europe,Northern Europe,,Isle of Man,IMN,IM,54.236107,-4.548056,,,, 191 | bb28d83a-ac22-495c-90d9-3e24ebfb0c0f,c6fe47b1-9cd4-4145-9268-aa056ce8e830,e4f41ea3-c30a-42e7-8099-635430fde277,Europe,Northern Europe,,Latvia,LVA,LV,56.879635,24.603189,,,, 192 | 833fb0d3-117f-4c44-b428-fe2bde43dbbb,8cb07874-9040-45ed-afa8-ab4bb6c63eb5,c1c9e402-70c0-4543-bfac-b85571f40ff9,Europe,Northern Europe,,Lithuania,LTU,LT,55.169438,23.881275,,,, 193 | 3cb013cc-6335-4ba8-86e9-eeed35239d16,383cb2c6-ff5f-4357-ab2a-a2bb2d2e6528,bf722dfa-e13f-4926-9427-a0e20ead1379,Europe,Northern Europe,,Norway,NOR,NO,60.472024,8.468946,,,, 194 | c3691375-4a88-43c9-8d66-c88e9fd4b87e,66f9b703-0334-4267-8025-7653fa81b70d,dabf3288-d4f6-43a7-8733-96698b1c7820,Europe,Northern Europe,,Svalbard and Jan Mayen Islands,SJM,SJ,77.553604,23.670272,,,, 195 | 580d695b-b822-4131-9757-45ecb07fe587,1f3f8951-45cc-4c3e-84ec-2dbd62e64e89,9653dbb3-0cf5-402d-8aeb-e665366327da,Europe,Northern Europe,,Sweden,SWE,SE,60.128161,18.643501,,,, 196 | eeff50df-7f59-4f8a-9323-e6e8298ed290,0ab5087d-beb4-4dab-8749-de9c4feeee4d,a038053a-849a-49f2-b6ad-e872dcff4c33,Europe,Northern Europe,,United Kingdom of Great Britain and Northern Ireland,GBR,GB,55.378051,-3.435973,,,, 197 | 18fad6c8-7596-47fa-af2a-d5a0c2295990,7eb867ee-6b73-4041-9499-8805552a0cb8,1a313886-1cf1-4719-91e6-0f870ee45dad,Europe,Southern Europe,,Albania,ALB,AL,41.153332,20.168331,,,, 198 | 2f90912a-4ae5-4d62-a780-f07b9e0a2553,0d991142-5335-44b6-a900-9598a303a95c,a9c901ca-019a-4dea-89e1-08661d93256a,Europe,Southern Europe,,Andorra,AND,AD,42.546245,1.601554,,,, 199 | 9c23508a-7f4a-474f-80cc-50d06f997687,db65840c-ac90-4d17-9b5a-e079c66a20a8,9d5a4510-47b1-4d49-b898-923dec158ca2,Europe,Southern Europe,,Bosnia and Herzegovina,BIH,BA,43.915886,17.679076,,,, 200 | 2ab0b20d-c33c-40cf-982a-d305f8498edc,c9443ad3-f7f2-4005-9fc8-3ebe5f2572b0,0c7d295e-7aa2-44ea-aea0-bd55e99fa4f5,Europe,Southern Europe,,Croatia,HRV,HR,45.1,15.2,,,, 201 | a4368cfa-c769-4e7b-891b-a07a0c76ced2,12522a0c-b693-4448-8fe2-2dd943358df3,b0c0fa72-6ad9-42e6-973b-7b38606b728c,Europe,Southern Europe,,Gibraltar,GIB,GI,36.137741,-5.345374,,,, 202 | b0a7e557-5b92-4b8f-9430-411369f8daf4,212075ed-34d3-49c7-83a1-84ace4bb9ea2,53f500b8-4ac7-4cee-b127-56b5b6f4e546,Europe,Southern Europe,,Greece,GRC,GR,39.074208,21.824312,,,, 203 | f498f75e-81b5-4b85-921e-dcd38637d3b9,a8a09fb4-e317-45c2-84d5-ecb8a942e14a,ce3cbceb-574f-4e53-9a0a-5abca27a968b,Europe,Southern Europe,,Holy See,VAT,VA,41.902916,12.453389,,,, 204 | 74d67245-cd3b-42e8-b575-8327bf09299d,0d2c7942-ec26-4cfb-8bd5-54ebe6d5896a,b4705466-c505-4d72-85f9-5593ec05eead,Europe,Southern Europe,,Italy,ITA,IT,41.87194,12.56738,,,, 205 | b88f0e70-4fc5-4b77-895e-1d697d0ef27f,686dbf77-fb58-4a43-8c9d-fc8da464c303,8b6fe979-91eb-4f50-8b25-f0ef024c78cc,Europe,Southern Europe,,Malta,MLT,MT,35.937496,14.375416,,,, 206 | 68b7d789-8496-4853-8472-da0c65ac0bdf,19825381-7485-4792-a216-66f9f3ee86c3,75e2de39-ee28-4486-8cd0-8c40919115d5,Europe,Southern Europe,,Montenegro,MNE,ME,42.708678,19.37439,,,, 207 | b75c24b8-a59c-4e32-8d92-c98039104f4f,4456ba9b-21a5-48fe-9b07-67c454a48727,37e3715a-7e19-431f-8351-b8c744c0b643,Europe,Southern Europe,,North Macedonia,MKD,MK,41.608635,21.745275,,,, 208 | 67a8b08a-8a75-4899-8598-dc00def772c4,675cf90c-be99-455a-b707-ebac5daa81bd,a1ebefe6-e91d-4281-a860-eb96a41e08ec,Europe,Southern Europe,,Portugal,PRT,PT,39.399872,-8.224454,,,, 209 | 6dcf2071-e026-43e3-801f-3907e899795a,08d693d5-cf02-4a05-96f8-e61c2c67254a,43cc8393-aa9f-4702-bee8-8cbda34c7454,Europe,Southern Europe,,San Marino,SMR,SM,43.94236,12.457777,,,, 210 | b9d68cf4-c67e-4ab9-a7ee-25278da8c917,ed294b22-6e80-4388-88f0-0c34a33b0480,2ad09063-81f3-443e-ab24-dbcb950fca2c,Europe,Southern Europe,,Serbia,SRB,RS,44.016521,21.005859,,,, 211 | e1800c51-bcb2-41e4-a740-9cea251cdcc5,bbefaed5-ce08-4605-bd6c-ff9e1ca03e32,8bcc4551-0893-4e18-af26-aa50d908fecf,Europe,Southern Europe,,Slovenia,SVN,SI,46.151241,14.995463,,,, 212 | 171e9aa3-5cd5-4b82-b92a-28b23ccd3488,4ce3f77e-949c-4b23-9d7c-be60a0064729,b6133f68-940f-4840-80de-8275cf0f1573,Europe,Southern Europe,,Spain,ESP,ES,40.463667,-3.74922,,,, 213 | 35dc4079-50d7-4c12-8513-8fbf79d665ab,e2decc5a-6574-4987-abed-09179ebebabf,ed0732fb-6613-46af-850c-002ffea6b685,Europe,Western Europe,,Austria,AUT,AT,47.516231,14.550072,,,46.227638,2.213749 214 | 796f75f3-a64a-4ff9-957e-f32a25ffab4d,8ad13270-1032-4cfe-92ea-e69d758129e1,faf46e56-6e61-43af-b89e-89f7a0eccb2e,Europe,Western Europe,,Belgium,BEL,BE,50.503887,4.469936,,,, 215 | d22dda8e-a18a-4055-94f5-1ac982950e6f,8382eb71-9409-46e0-929d-feba3f59a7aa,5acd8b26-51c2-4608-86ed-e9edd43ad971,Europe,Western Europe,,France,FRA,FR,46.227638,2.213749,,,, 216 | ce2b0602-0d03-4324-8fcf-0d85a147d01c,5858a138-4194-4dcb-8afe-1234b97b9987,4a05ddf0-1339-4e61-a241-e1fdf5f5a538,Europe,Western Europe,,Germany,DEU,DE,51.165691,10.451526,,,, 217 | 857d1386-8f79-4f9b-9271-0a1edf1ffbfa,fb267442-65da-42bb-9f99-93a7d3470bf1,d173d9fa-de5b-4c45-851b-32dd2cffcbdf,Europe,Western Europe,,Liechtenstein,LIE,LI,47.166,9.555373,,,, 218 | fb623d1e-c05f-45c8-bfb5-3da4ea3c35ab,e4fd639a-75b2-4eea-bd61-39ace2675cd4,c18521ac-d768-44a4-a377-db5ed2b0ccc8,Europe,Western Europe,,Luxembourg,LUX,LU,49.815273,6.129583,,,, 219 | 4de8de6e-bafc-4a61-b466-043e40269034,e026838c-55fd-49b7-a29f-1fafa1105f7a,8565c676-ac11-482e-ac85-276add7ffe51,Europe,Western Europe,,Monaco,MCO,MC,43.750298,7.412841,,,, 220 | 4e55ee55-d86f-4a6f-b7c3-cc81883d1fac,2931c652-184e-4544-9cfa-dc714f072cc5,24b26d8c-7f8c-489f-a9d6-a6b4c44ad172,Europe,Western Europe,,Netherlands,NLD,NL,52.132633,5.291266,,,, 221 | 0b109606-5c0e-470a-88fd-efa2b11a5aaa,ba895c6f-c0a2-4cbb-bbe3-b793ab8fdda7,736b4cc6-2aa4-4e69-8aa6-3b82f8744a7b,Europe,Western Europe,,Switzerland,CHE,CH,46.818188,8.227512,,,, 222 | c83c77bf-8388-44a2-bd1b-a936198b280c,e90a1dd3-886b-4cd4-8967-9fb0c76eb788,4955239f-b9c9-457a-bed3-776ac5a09e3d,Oceania,Australia and New Zealand,,Australia,AUS,AU,-25.274398,133.775136,,,, 223 | 553df2e7-c62e-4a8f-b295-d0bdd485f343,a9ad16a7-a142-409d-9e20-8ec06a7f74bf,6e8af61d-9969-47b7-b01a-6754d31e949a,Oceania,Australia and New Zealand,,Christmas Island,CXR,CX,-10.447525,105.690449,,,, 224 | 4fa4365a-1542-42dc-916b-b7cc93908178,38d25805-97d6-4060-be0f-da5989146656,4fe3027f-55cc-4022-8a7c-60ac6b76138a,Oceania,Australia and New Zealand,,Cocos (Keeling) Islands,CCK,CC,-12.164165,96.870956,,,, 225 | b186dfc7-af75-401b-8cc6-949c90443745,619a472c-0d28-4fff-ac7d-c4c68bbc424f,f36c0fa8-d723-46d6-aa64-3492b55ff540,Oceania,Australia and New Zealand,,Heard Island and McDonald Islands,HMD,HM,-53.08181,73.504158,,,, 226 | 16ceac23-dfda-40d7-8f46-ab9486404327,4478723a-22f0-40cb-a470-1e6f7487f301,16590ce0-3020-4d6d-a6d2-b9d9736c96b6,Oceania,Australia and New Zealand,,New Zealand,NZL,NZ,-40.900557,174.885971,,,, 227 | e1aa9de0-a2ae-457b-ac7f-3b4dd02688de,1c99092c-23ce-4524-809b-ae98ffad407d,abef88fc-63e7-4686-8b2d-c3acd6e7bb05,Oceania,Australia and New Zealand,,Norfolk Island,NFK,NF,-29.040835,167.954712,,,, 228 | 4c876831-3b74-4df3-b4b7-70e5bf9c5e81,2e79050b-f9d8-4eaa-ac4e-e3611fa44b08,cf1689ed-50af-42b5-b02b-b1099264137d,Oceania,Melanesia,,Fiji,FJI,FJ,-16.578193,179.414413,,,, 229 | 69d8287f-4015-4d2e-89bd-cd5b7fb53b08,ed4b24de-ccd9-450f-b2b8-976ff826e45d,6eb74e58-4b45-4b65-b575-eabcac97cb47,Oceania,Melanesia,,New Caledonia,NCL,NC,-20.904305,165.618042,,,, 230 | 6216e0a2-7251-4946-8352-748846a4d686,eb03b3d2-6fb1-402f-a570-73abc1b81738,7e1516e0-91f7-48a9-8ebc-e88ac6bc2492,Oceania,Melanesia,,Papua New Guinea,PNG,PG,-6.314993,143.95555,,,, 231 | fa577352-dd0c-450b-a8ab-b4739ea53b39,54a45b73-f251-4ad6-91b1-a293caee52e9,85695f48-5991-4559-bede-4a9f09dc9951,Oceania,Melanesia,,Solomon Islands,SLB,SB,-9.64571,160.156194,,,, 232 | e2eacafe-86b3-45ff-a38f-8de553e4b4d0,96b72a76-c504-4f98-84f0-3023bb8b5f5a,a821557a-dd7f-4f0e-9898-fcfd38863165,Oceania,Melanesia,,Vanuatu,VUT,VU,-15.376706,166.959158,,,, 233 | 85ea0545-e981-4da7-ba9d-4177ca189378,b2039652-51f8-46cb-8a03-b2263bc20447,6f1a0c65-5471-498d-88bc-f1f832110855,Oceania,Micronesia,,Guam,GUM,GU,13.444304,144.793731,,,, 234 | a9398eb5-2a1e-447c-936e-14798d9b2b11,5ee9a142-23a4-42ef-86e9-dbfcdce43dfd,ea5b86fa-0c3f-41a9-9b97-e0adc7eda8f6,Oceania,Micronesia,,Kiribati,KIR,KI,-3.370417,-168.734039,,,, 235 | 46eca70f-2e43-44c3-a622-852eb294030b,aba55c24-b762-4bb0-b2a4-5aa08e7972e8,0dfa1ea2-6bc2-4786-9e4d-53222bd81169,Oceania,Micronesia,,Marshall Islands,MHL,MH,7.131474,171.184478,,,, 236 | f12db62d-69eb-478a-802c-52237def279c,a920e196-7aeb-4a1b-b68d-abca5dae5b59,bc4927d3-e94b-4d93-a11c-25507102847d,Oceania,Micronesia,,Micronesia (Federated States of),FSM,FM,7.425554,150.550812,,,, 237 | d12b8857-a64e-453b-a154-f2cc0f0a5654,cf29e2a8-b357-43b0-a55e-b44d90564608,415adc78-4c86-4ce1-80b4-0eab670f3a9d,Oceania,Micronesia,,Nauru,NRU,NR,-0.522778,166.931503,,,, 238 | f3a35d4b-becf-47c5-ae56-2738e5b83fe6,b229413c-0166-4d3d-92b6-b54e40c6ca54,6a516fa5-4b33-4e0d-9325-3f5c579838f8,Oceania,Micronesia,,Northern Mariana Islands,MNP,MP,17.33083,145.38469,,,, 239 | 58bb2069-a96a-49d1-8b9a-d3fdde9db7f6,406614d3-0ed9-4af9-80cb-32bf33dbf66e,e62aa3ac-26a4-4f85-b96d-cde7884f0fb8,Oceania,Micronesia,,Palau,PLW,PW,7.51498,134.58252,,,, 240 | 99cdae59-a1d4-46d9-ac3b-6ba1f676ccf3,e17c8a0c-629d-4f4f-8a00-72ea024867f1,aaf6b192-b29b-4748-b761-fd5ae8f62efd,Oceania,Micronesia,,United States Minor Outlying Islands,UMI,UM,,,,,, 241 | 51d9e798-0d22-472c-866d-6af821126b81,aaa9fcf7-343b-46d2-b324-f0c6179a5d0e,0307fa35-a126-40ea-bee3-2404341602b3,Oceania,Polynesia,,American Samoa,ASM,AS,-14.270972,-170.132217,,,, 242 | 9f40febf-ca5f-4bbb-ae70-08d2e8ceb35b,d801bcc4-7774-41f8-bc2b-ab09d4ac8d34,31ed199a-ccde-412c-b8a7-31f6b566aa8f,Oceania,Polynesia,,Cook Islands,COK,CK,-21.236736,-159.777671,,,, 243 | 034bc709-f774-4ecf-bf87-df1d9154cdae,b63af202-793d-49d5-a9df-f86101fe4e5c,2f49dd0c-5167-41d0-a30d-69956d8b0306,Oceania,Polynesia,,French Polynesia,PYF,PF,-17.679742,-149.406843,,,, 244 | 5a08be0a-aede-42e9-8b20-47be836619cf,60e62541-4942-4a2f-bec7-998c8942f872,ae8950db-c992-421c-92cf-84a5f46199af,Oceania,Polynesia,,Niue,NIU,NU,-19.054445,-169.867233,,,, 245 | b0b81f21-643b-4203-9ccb-11b64d138b2e,703539cc-a9e6-4e24-a3e8-4b332bbb3415,f6dde2ee-eaa2-4275-820e-076945d23dbf,Oceania,Polynesia,,Pitcairn,PCN,PN,-24.703615,-127.439308,,,, 246 | def482eb-38f4-4566-9dab-9af037f9570f,512095db-be90-4a57-b93f-39b0b58d5176,fcc1bda4-61fa-43db-96d3-88a72a5e4c6e,Oceania,Polynesia,,Samoa,WSM,WS,-13.759029,-172.104629,,,, 247 | b959976d-e585-4d5d-85c7-cc0cb944f3dd,8a02a41c-13b2-4033-8132-95de78a451cc,b3e9e338-1b79-4d2a-8957-48fc4fc170c0,Oceania,Polynesia,,Tokelau,TKL,TK,-8.967363,-171.855881,,,, 248 | e0b90e3c-cca2-4872-b00f-e201722fb717,218a99a5-9cb5-4519-834d-ede23b750997,12c5b487-3fba-418c-8215-76fa3437c5e8,Oceania,Polynesia,,Tonga,TON,TO,-21.178986,-175.198242,,,, 249 | 55eacfd5-60c2-42d4-891c-0719782ceadc,b0eabc07-4749-4761-91d5-f9f4d65f26a1,813c3048-9f79-49c3-93c5-a23be2a64650,Oceania,Polynesia,,Tuvalu,TUV,TV,-7.109535,177.64933,,,, 250 | c5d5f888-9478-4e90-a7fc-8149eca9162b,830aff0a-1b33-4729-a8a0-415c099da10d,6b3b06c2-96e4-4e10-838d-c51bc452b283,Oceania,Polynesia,,Wallis and Futuna Islands,WLF,WF,-13.768752,-177.156097,,,, 251 | 7b001a8c-8800-42c5-8f24-6c56ac1ed55b,5766a4da-a989-4a08-94a3-7ef628b318ed,9c933165-185a-4a3c-8160-2f02e9449c59,,,,Antarctica,ATA,AQ,-75.250973,-0.071389,,,, 252 | -------------------------------------------------------------------------------- /raw/sectors.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "stix_id": "identity--0c90429a-647f-4e1b-ae2e-a007fec01ae8", 4 | "name": "Agriculture and agribusiness", 5 | "description": "Private entities specialized in the growth, culture, transport and transformation of plants or livestock for food.", 6 | "aliases": ["Agriculture", "Agribusiness", "Food Production", "Nutritional Supplements"], 7 | "subsectors": [] 8 | }, 9 | { 10 | "stix_id": "identity--0ff292ef-8468-478c-8f29-d31246bf0a35", 11 | "name": "Logistics", 12 | "description": "Entities managing the flow of goods, equipment, materials, supplies etc.", 13 | "aliases": ["Logistic"], 14 | "subsectors": [] 15 | }, 16 | { 17 | "stix_id": "identity--7083bf6a-87f7-40a7-b888-a919312f82e5", 18 | "name": "Culture and entertainment", 19 | "description": "Public and private entities dealing with cultural, sport activities and entertainment.", 20 | "aliases": ["Entertainment"], 21 | "subsectors": [ 22 | { "stix_id": "identity--7095afff-2cf3-47a7-b782-7613f58b50f4", 23 | "name": "Culture", 24 | "description": "Private and public entities involved in creating, producing, and distributing goods and services that are cultural in nature, or protecting it.", 25 | "aliases": ["Travel"] 26 | }, 27 | { 28 | "stix_id": "identity--e7966f9f-4d44-4adf-93b0-77cbee5c5106", 29 | "name": "Sports", 30 | "description": "Private and public entities involved in producing, organizing, promoting goods and services associated with sports.", 31 | "aliases": ["Sport"] 32 | }, 33 | { 34 | "stix_id": "identity--c145a6eb-c948-43ef-8f27-1305dba1b586", 35 | "name": "Entertainment industry", 36 | "description": "All entities involved in the conception and production of entertainment products, such as music, movies or video games.", 37 | "aliases": ["Gaming", "Online Gaming Community"] 38 | }, 39 | { 40 | "stix_id": "identity--92a6e1b9-d54d-4f28-9c23-e03e542fce87", 41 | "name": "Gambling", 42 | "description": "All companies or public organizations involved in gambling activities, such as casino, money games, etc.", 43 | "aliases": [] 44 | } 45 | ] 46 | }, 47 | { 48 | "stix_id": "identity--410d2368-a448-47aa-80ca-4b09ea2b339a", 49 | "name": "Education", 50 | "description": "Public or private entities operating to facilitate learning and acquiring knowledge and skills, composed of infrastructures and services to host teachers, students, and administrative services related to this activity. This does not include research activities.", 51 | "aliases": [], 52 | "subsectors": [ 53 | { 54 | "stix_id": "identity--1d7205a8-5a46-4bf2-9007-d56be02dcad6", 55 | "name": "Universities", 56 | "description": "Public and private institutions for higher education.", 57 | "aliases": ["Higher education", "Academic", "Academics", "Academic Sector"] 58 | }, 59 | { 60 | "stix_id": "identity--b8ce168d-3820-435d-9bcf-dd1938ae4235", 61 | "name": "Schools", 62 | "description": "Public and private institutions for all primary and secondary school levels.", 63 | "aliases": [] 64 | } 65 | ] 66 | }, 67 | { 68 | "stix_id": "identity--062f72b1-7caf-4112-ab92-6211f7e7abc8", 69 | "name": "Energy", 70 | "description": "Public and private entities operating to extract, store, transport and process fuel, entities managing energy plants and energy storage and distribution and entities managing fuel waste.", 71 | "aliases": ["Natural Resources", "Energy"], 72 | "subsectors": [ 73 | { 74 | "stix_id": "identity--e8b655e0-d895-4362-aacc-679647141c42", 75 | "name": "Electricity", 76 | "description": "Public or private entities involved in the storage, transport and distribution of electricity to end customers.", 77 | "aliases": ["Electrical", "Power", "Utilities & Electric"] 78 | }, 79 | { 80 | "stix_id": "identity--c3b13a21-3b89-4c2f-871c-14c4fd04e290", 81 | "name": "Nuclear power (civilian use)", 82 | "description": "Public and private entities involved in the extraction and transport of nuclear fuel, operating nuclear plants for civilian purposes and entities processing nuclear waste.", 83 | "aliases": ["Nuclear"] 84 | }, 85 | { 86 | "stix_id": "identity--4a3c2734-f6fb-40ae-91c9-0ef2e1a43114", 87 | "name": "Gas", 88 | "description": "Public or private entities involved in exploration, extraction, refining, transporting and marketing of natural gas products.", 89 | "aliases": ["Oil and Gas", "Natural Gas Utilities", "Gas and Oil", "Oil & Gas Manufacturing", "Gas And"] 90 | }, 91 | { 92 | "stix_id": "identity--22d9e69f-d211-41cc-a5e5-d012366eaa73", 93 | "name": "Oil", 94 | "description": "Public and private entities involved in the global processes of exploration, extraction, refining, transporting and marketing of petroleum products.", 95 | "aliases": ["Fuel"] 96 | }, 97 | { 98 | "stix_id": "identity--89f89245-0dfd-4d20-a157-57ce7c829847", 99 | "name": "Renewable energies", 100 | "description": "Public and private entities involved in the production of electricity based on renewable resources.", 101 | "aliases": [] 102 | } 103 | ] 104 | }, 105 | { 106 | "stix_id": "identity--97c8d7be-646d-4014-9cad-ff883d15d09a", 107 | "name": "Transport", 108 | "description": "All entities involved in the movement of people or goods from one place to another.", 109 | "aliases": ["Transportation", "Shipping"], 110 | "subsectors": [ 111 | { 112 | "stix_id": "identity--f1aeb7a2-0f3e-4fb0-ade5-a50297afe65d", 113 | "name": "Air transport", 114 | "description": "All entities transporting people or goods by plane, managing or exploiting airports and structures, traffic authorities and plane manufacturers. Includes all civilian space activities.", 115 | "aliases": ["Aerospace", "Aviation", "Satellite", "Satellite and communications", "Airline"] 116 | }, 117 | { 118 | "stix_id": "identity--0f5a665e-fb32-411a-ac6f-f63eeb71f71e", 119 | "name": "Rail transport", 120 | "description": "Public and private entities managing rail infrastructures, rail transportation, exploiting intelligent rail transport systems and the rail industry.", 121 | "aliases": [] 122 | }, 123 | { 124 | "stix_id": "identity--1ce54804-3089-4fd1-9a1d-6ed3aa65d887", 125 | "name": "Maritime transport", 126 | "description": "All entities transporting people or good by naval means, managing or exploiting naval structures (ports), naval constructors and traffic authorities.", 127 | "aliases": ["Marine", "Naval", "maritime"] 128 | }, 129 | { 130 | "stix_id": "identity--de61c7c3-ae8d-4064-90be-7c290d7e2a73", 131 | "name": "Road transport", 132 | "description": "Public and private entities managing road infrastructures, road transportation, exploiting intelligent transport systems and the automotive industry.", 133 | "aliases": ["Automotive"] 134 | } 135 | ] 136 | }, 137 | { 138 | "stix_id": "identity--96853bde-72b2-4564-a133-c2d58206c117", 139 | "name": "Defense", 140 | "description": "Public and private entities involved in the conception and production of weapons and the planning and conducting of military operations.", 141 | "aliases": ["Defence", "National Security"], 142 | "subsectors": [ 143 | { 144 | "stix_id": "identity--b6e14529-565d-4540-8fc3-6a28661aaf6e", 145 | "name": "Defense ministries (including the military)", 146 | "description": "Includes the military and all defense related-space activities.", 147 | "aliases": ["Military", "intelligence", "Intelligence services"] 148 | }, 149 | { 150 | "stix_id": "identity--2bc42030-ab93-4fe2-8272-6a2975745ff8", 151 | "name": "Defense industry", 152 | "description": "All private contractors involved in the manufacturing and sale of weapons and military or defense technologies.", 153 | "aliases": ["Defence industry"] 154 | }, 155 | { 156 | "stix_id": "identity--d0db92e3-af8a-4990-a067-2f76998e726c", 157 | "name": "Defense research and development", 158 | "description": "R&D for defense or military purposes.", 159 | "aliases": ["Defence research and development"] 160 | } 161 | ] 162 | }, 163 | { 164 | "stix_id": "identity--640fbd6e-3878-4fce-87fe-66d2110657bb", 165 | "name": "Finance", 166 | "description": "Public and private entities involved in the allocation of assets and liabilities over space and time.", 167 | "aliases": ["Financial Industry (FI)", "Financial-Services", "Financial", "Financial Services"], 168 | "subsectors": [ 169 | { 170 | "stix_id": "identity--cda34d5b-c9d8-4a61-85ce-5f00760bebb9", 171 | "name": "Banking institutions", 172 | "description": "Credit institutions whose business consists in receiving repayable funds from the public and granting credit. As the bank of banks, central banks are included in this scope.", 173 | "aliases": ["Banking", "Bank", "Banks", "Banking Services", "Banking & Investment Services"] 174 | }, 175 | { 176 | "stix_id": "identity--9255487f-19a2-4490-b587-d5d6e2c466de", 177 | "name": "Financial organizations", 178 | "description": "Comprises for instance asset managers and investment firms, that are neither banks nor insurance companies.", 179 | "aliases": ["investment"] 180 | }, 181 | { 182 | "stix_id": "identity--3eda5dc7-6dc0-46ae-8093-5aa89963dc4e", 183 | "name": "Insurance services", 184 | "description": "Companies, either insurance companies or mutual insurance companies, that provides insurance services to customers.", 185 | "aliases": ["Insurance"] 186 | }, 187 | { 188 | "stix_id": "identity--89bb5038-94a0-4491-b4cb-4a0fe4ac82e0", 189 | "name": "Market infrastructures", 190 | "description": "Encompasses all the systems necessary for the smooth process of market financing operations. Are included payment systems, clearing houses, central securities depositories, securities settlement systems and trade repositories.", 191 | "aliases": ["Trade", "Trading"] 192 | } 193 | ] 194 | }, 195 | { 196 | "stix_id": "identity--633851ae-0d22-46b4-b0a9-aa3e657e721f", 197 | "name": "Diplomacy", 198 | "description": "Public or private entities which are actors of or involved in international relations activities.", 199 | "aliases": ["Diplomatic", "Foreign"], 200 | "subsectors": [ 201 | { 202 | "stix_id": "identity--332b79eb-2090-4b7f-9b0b-9b95fbdca682", 203 | "name": "Ministries of foreign affairs", 204 | "description": "Governmental entities in charge of the diplomatic action of the State.", 205 | "aliases": ["Foreign Affairs"] 206 | }, 207 | { 208 | "stix_id": "identity--2b24bbc0-4e5f-4af9-85d6-86ff470bd7de", 209 | "name": "Think tanks", 210 | "description": "Research institutes and structures specialized in policy making and advocating on international relations subjects.", 211 | "aliases": ["Think tank", "Thinktank", "Thinktanks"] 212 | }, 213 | { 214 | "stix_id": "identity--8bbac3ec-ac14-4244-b8b2-4f8641e4a5d8", 215 | "name": "International organizations", 216 | "description": "International organizations made up primarily of sovereign states and involved in setting international agendas and policies.", 217 | "aliases": ["Diplomatic Organizations"] 218 | } 219 | ] 220 | }, 221 | { 222 | "stix_id": "identity--f1b7c7a0-9fbf-42c4-8003-9865283d869b", 223 | "name": "Government and administrations", 224 | "description": "Civilian government institutions and administrations of the executive and legislative branches. The diplomatic and judicial branches are not included.", 225 | "aliases": ["Government", "Election", "Voting"], 226 | "subsectors": [ 227 | { 228 | "stix_id": "identity--4a650617-1771-4e3b-bcc5-38047b81e807", 229 | "name": "Central administration and government", 230 | "description": "All central administrations and government bodies in charge of the executive power, except for the Ministries of Foreign Affairs, of Defense and of Justice.", 231 | "aliases": ["Government-National", "Emergency-Services", "Government-Public-Services", "Law Enforcement", "Police", "Security", "Critical Public"] 232 | }, 233 | { 234 | "stix_id": "identity--c5d9f749-f61c-43dd-a11e-785a8aeab032", 235 | "name": "Local administrations", 236 | "description": "Public administrations and government bodies managing a local territory under the global authority of a central government.", 237 | "aliases": ["Government-Local", "Government-Regional"] 238 | }, 239 | { 240 | "stix_id": "identity--8a9f413e-c990-4478-bdc4-db4440744fce", 241 | "name": "Legislative branch (parliamentary chambers)", 242 | "description": "Legislative chambers of the state, in charge of voting the laws.", 243 | "aliases": [] 244 | } 245 | ] 246 | }, 247 | { 248 | "stix_id": "identity--59644f64-2a06-406c-978b-6a4b8f7dac3a", 249 | "name": "Health", 250 | "description": "Public and private entities involved in research, services and manufacturing activities related to public health.", 251 | "aliases": ["Healthcare"], 252 | "subsectors": [ 253 | { 254 | "stix_id": "identity--33986379-9641-417e-b821-669588580ecb", 255 | "name": "Healthcare services", 256 | "description": "Hospitals and other direct medical practice activities.", 257 | "aliases": ["Medical", "Social Services"] 258 | }, 259 | { 260 | "stix_id": "identity--a0ba9dba-f8d0-4cfb-b037-e227d4c7dc41", 261 | "name": "Pharmacy and drugs manufacturing", 262 | "description": "Public and private entities involved in producing and selling medicinal products and drugs.", 263 | "aliases": ["Pharmaceuticals", "Pharmaceutical"] 264 | }, 265 | { 266 | "stix_id": "identity--769af810-c705-4743-aea3-936fc7c426cd", 267 | "name": "Healthcare research", 268 | "description": "Entities involved in the scientific investigation of understanding how different factors affect people’s health and their access to healthcare.", 269 | "aliases": ["Biomedical"] 270 | } 271 | ] 272 | }, 273 | { 274 | "stix_id": "identity--8248830f-4c88-4174-820f-c2ea8ddcc1d7", 275 | "name": "Hospitality", 276 | "description": "Private entities offering to customers’ leisure activities and experiences.", 277 | "aliases": ["Hospitality-Leisure"], 278 | "subsectors": [ 279 | { 280 | "stix_id": "identity--806e87ee-ed41-4629-ab47-28dc0424caef", 281 | "name": "Lodging industry", 282 | "description": "Entities offering short-term dwellings in exchange for money for people traveling or staying away from their home.", 283 | "aliases": [] 284 | }, 285 | { 286 | "stix_id": "identity--fe504e16-8bfd-4843-bb21-b1b76b04099e", 287 | "name": "Food and drinks businesses", 288 | "description": "Businesses preparing and serving food and drinks to customers in exchange for money.", 289 | "aliases": ["Food", "Restaurant", "Restaurant Chains", "Beverage"] 290 | }, 291 | { 292 | "stix_id": "identity--701de654-fcbb-4e0a-8188-67c88f21131e", 293 | "name": "Travel and tourism industry", 294 | "description": "Businesses operating in the field of travel for pleasure or business and in the field of attracting and entertaining tourists.", 295 | "aliases": ["Commodities", "Tourism"] 296 | } 297 | ] 298 | }, 299 | { 300 | "stix_id": "identity--84c3a483-2048-40d4-8d8f-5e57ff35da9c", 301 | "name": "Technologies", 302 | "description": "Private entities related to the research, development, manufacturing and distribution of electronics, softwares, computers and products related to information technologies.", 303 | "aliases": ["Technology", "Crypto", "Cryptocurrency", "Information Security", "Vulnerability Research", "software", "Software Development", "IT", "Currency Exchange", "Virtual Currency", "Bitcoin"], 304 | "subsectors": [ 305 | { 306 | "stix_id": "identity--f82271f9-fcf8-4f29-8dfb-18c58b05c546", 307 | "name": "High-tech", 308 | "description": "Businesses involved in the conception and production of high technological equipment and goods in different fields such as biotechnologies, information technologies, nanotechnologies and robotics.", 309 | "aliases": ["Semiconductor", "Biotechnology", "Electronics", "High Tech", "High Technology"] 310 | } 311 | ] 312 | }, 313 | { 314 | "stix_id": "identity--a8e78952-7a75-4a4d-b6c3-44c3007de616", 315 | "name": "Unknown", 316 | "description": "", 317 | "aliases": ["Undefined"], 318 | "subsectors": [] 319 | }, 320 | { 321 | "stix_id": "identity--bd6bd33d-dec5-4121-9c09-663dc449dd7b", 322 | "name": "Judicial power (justice)", 323 | "description": "All judicial activities of the state and related private entities.", 324 | "aliases": ["law"], 325 | "subsectors": [] 326 | }, 327 | { 328 | "stix_id": "identity--b02efd41-e1f2-4fc3-adf0-8cca8b826e86", 329 | "name": "Manufacturing", 330 | "description": "Private entities transforming and selling goods, products and equipment which are not included in other activity sectors.", 331 | "aliases": ["Utilities", "industrial", "ICS", "Industrial Control Systems"], 332 | "subsectors": [ 333 | { 334 | "stix_id": "identity--cb0278bb-78ce-4ea9-b444-21dfe2090b73", 335 | "name": "Heavy industries", 336 | "description": "Private entities working to transform raw materials into manufactured products (Chemicals, metal etc.).", 337 | "aliases": ["Chemical", "Petrochemicals", "Industry", "Metal", "Infrastructure", "Critical Infrastructure", "Metallurgical", "metals", "heavy industry", "Critical Infrastructures", "Textile"] 338 | }, 339 | { 340 | "stix_id": "identity--0e7a8868-7788-4e47-b83a-9e76ec48f9ee", 341 | "name": "Construction", 342 | "description": "Private entities engaged in preparation of land and construction, alteration and repair of building, structures and other real estate properties.", 343 | "aliases": ["Building", "Offshore Engineering", "Offshore", "Real Estate"] 344 | }, 345 | { 346 | "stix_id": "identity--3be17acd-4485-42b8-a6f1-bdb260dcc389", 347 | "name": "Retail (distribution)", 348 | "description": "Distribution and sale of goods directly to the consumer.", 349 | "aliases": ["Retail", "Commercial", "Distribution", "e-commerce", "Ecommerce", "commerce", "Wholesale"] 350 | } 351 | ] 352 | }, 353 | { 354 | "stix_id": "identity--f6d9f006-9631-4237-9197-f3eef2a08d25", 355 | "name": "Telecommunications", 356 | "description": "Private and public entities involved in the production, transport and dissemination of information and communication signals.", 357 | "aliases": ["Communications", "Telecommunication", "Telecom", "Telecoms"], 358 | "subsectors": [ 359 | { 360 | "stix_id": "identity--d360e3ce-0eca-4f6d-829f-71a97d06d0b4", 361 | "name": "Digital infrastructures", 362 | "description": "All operators and entities in charge of operating and managing the digital infrastructures, including Internet Exchange Points, DNS providers and Top Level Domains Registrars.", 363 | "aliases": ["Cellular", "domain"] 364 | }, 365 | { 366 | "stix_id": "identity--d0744246-6c86-429a-ad93-2648bd2d3299", 367 | "name": "Hosting service providers", 368 | "description": "", 369 | "aliases": [] 370 | }, 371 | { 372 | "stix_id": "identity--ef8181b8-3ee5-421a-b6bc-d2e5ec9e5241", 373 | "name": "Internet Service providers", 374 | "description": "", 375 | "aliases": [] 376 | }, 377 | { 378 | "stix_id": "identity--354c9312-5f4a-4e07-b0cb-c7fa6ca626ba", 379 | "name": "Medias and audiovisual", 380 | "description": "Communication outlets used to deliver information by print, broadcast or Internet and people working in these outlets.", 381 | "aliases": ["Media", "Journalism", "Journalists", "News", "News Media", "News & Media"] 382 | } 383 | ] 384 | }, 385 | { 386 | "stix_id": "identity--5556c4ab-3e5e-4d56-8410-60b29cecbeb6", 387 | "name": "Consulting", 388 | "description": "Private entities providing expert advice in a specific field to external entities.", 389 | "aliases": ["Professional services", "Professional & consumer services", "HR Services", "Marketing / Public Relations", "Marketing", "Public Relations", "Advisory"], 390 | "subsectors": [ 391 | { 392 | "stix_id": "identity--506e29e3-75dc-42c0-9c7e-5925ff659b38", 393 | "name": "Legal consulting", 394 | "description": "", 395 | "aliases": ["Legal"] 396 | }, 397 | { 398 | "stix_id": "identity--360f3368-b911-4bb1-a7f9-0a8e4ef4e023", 399 | "name": "Information Technologies Consulting", 400 | "description": "Includes Managed Services Providers (MSPs).", 401 | "aliases": ["Information Technology", "IT Service Providers"] 402 | }, 403 | { 404 | "stix_id": "identity--6612ac1e-8495-47b5-8819-f2033edba2e8", 405 | "name": "Engineering consulting", 406 | "description": "", 407 | "aliases": ["Engineering"] 408 | } 409 | ] 410 | }, 411 | { 412 | "stix_id": "identity--be6cc9cf-10a2-46b3-b5cd-4c3be99441f6", 413 | "name": "Mining", 414 | "description": "Entities in charge of extracting minerals and other geological materials from the Earth.", 415 | "aliases": [], 416 | "subsectors": [] 417 | }, 418 | { 419 | "stix_id": "identity--f3f6b9af-6048-46bc-8fe2-048cb27ca31c", 420 | "name": "Research", 421 | "description": "Private and public entities such as university research centers, labs, experimental centers etc. (except for defense, diplomacy and healthcare).", 422 | "aliases": [], 423 | "subsectors": [] 424 | }, 425 | { 426 | "stix_id": "identity--ec0d4d51-e8cb-4444-9377-3482b6ac8f5b", 427 | "name": "Water distribution and supply", 428 | "description": "All public and private entities involved in the collection, transport and distribution of water for consumption purposes.", 429 | "aliases": ["Dams", "Water", "Water Treatment Plants"], 430 | "subsectors": [] 431 | }, 432 | { 433 | "stix_id": "identity--00abb489-e6a5-4ec9-8c1c-aee74e920c33", 434 | "name": "Civil society", 435 | "description": "The general public and all non-governmental entities, or individuals independent of governments, which may be linked by interests or activities aiming at promoting the interests and the will of citizens.", 436 | "aliases": [], 437 | "subsectors": [ 438 | { 439 | "stix_id": "identity--381bd576-3b81-4932-9589-18a67b355379", 440 | "name": "Non-Governmental Organizations (NGOs)", 441 | "description": "A legally constituted non-commercial organization created by natural or legal persons with no participation or representation of any government.", 442 | "aliases": ["NGO", "Human Rights", "Non-Profit", "Environmental", "Humanitarian", "Charitable Organizations"] 443 | }, 444 | { 445 | "stix_id": "identity--9afcd3be-12e7-4f54-8dbe-8c22cecb592c", 446 | "name": "Citizens", 447 | "description": "The general population of a country.", 448 | "aliases": ["Religion", "Religious"] 449 | }, 450 | { 451 | "stix_id": "identity--84ba267e-9fdd-4086-b4d7-df02ab02f085", 452 | "name": "Political parties", 453 | "description": "A recognized or non recognized political group or party taking part into the political life of a country, weither by being part of the majority or opposed to the ruling power", 454 | "aliases": ["Political opposition", "Politics", "Political"] 455 | }, 456 | { 457 | "stix_id": "identity--3292e7aa-d173-4adc-97d5-d303bdb9603c", 458 | "name": "Dissidents", 459 | "description": "Individuals publicly disagreeing with and criticizing their government.", 460 | "aliases": ["activism"] 461 | } 462 | ] 463 | } 464 | ] 465 | -------------------------------------------------------------------------------- /scripts/companies.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding: utf-8 3 | 4 | import json 5 | import os 6 | from csv import DictReader 7 | from stix2 import Bundle, Identity, Relationship, TLP_WHITE 8 | 9 | 10 | raw_file = '../raw/companies.csv' 11 | out_file = '../data/companies.json' 12 | 13 | sector_file = '../data/sectors.json' 14 | geograph_file = '../data/geography.json' 15 | 16 | filigran = Identity( 17 | id='identity--8cb00c79-ab20-5ed4-b37d-337241b96a29', 18 | name="Filigran", 19 | description="Filigran is a cybertech founded in 2022, providing cyber threat intelligence, adversary simulation and crisis management solutions to cybersecurity teams across the world.", 20 | identity_class="organization", 21 | object_marking_refs=[TLP_WHITE], 22 | confidence=100, 23 | revoked=False, 24 | custom_properties={ 25 | 'x_opencti_organization_type': 'vendor', 26 | } 27 | ) 28 | 29 | 30 | 31 | def get_name_and_ids(in_file: str, classes: list): 32 | result_dict = {} 33 | bundle_id = "" 34 | 35 | if not os.path.isfile(in_file): 36 | print('No existing STIX file. Starting from scratch') 37 | return result_dict, bundle_id 38 | 39 | with open(in_file, 'r') as f: 40 | data = json.load(f) 41 | data_type = data.get('type', None) 42 | 43 | if data_type != "bundle": 44 | print('Output file is not a bundle. Starting from scratch') 45 | return result_dict, bundle_id 46 | 47 | for item in data['objects']: 48 | if item['type'] == "relationship": 49 | result_dict[f"{item['source_ref']}_{item['target_ref']}"] = item 50 | if item['type'] in classes: 51 | result_dict[item['name']] = item 52 | 53 | bundle_id = data['id'] 54 | 55 | return result_dict, bundle_id 56 | 57 | 58 | def update_list(bundle_id: str, raw_companies_file: str, companies: dict, sectors: dict) -> Bundle: 59 | bundles = [filigran] 60 | 61 | with open(raw_companies_file, mode='r', encoding='utf-8') as csv_file: 62 | csv_dict_reader = DictReader(csv_file, delimiter=',') 63 | 64 | for row in csv_dict_reader: 65 | if row['createdBy'] == "Filigran": 66 | creator = filigran 67 | else: 68 | creator = row['createdBy'] # has to be a STIX ID 69 | 70 | entity_id = None 71 | entity_creation_date = None 72 | if row['name'] in companies: 73 | entity_id = companies[row['name']]['id'] 74 | entity_creation_date = companies[row['name']]['created'] 75 | 76 | if row['x_opencti_aliases']: 77 | aliases = row['x_opencti_aliases'].split(',') 78 | else: 79 | aliases = [] 80 | 81 | if row['other_stix_ids']: 82 | stix_ids = row['x_opencti_stix_ids'].split(',') 83 | else: 84 | stix_ids = [] 85 | 86 | company = Identity( 87 | id=entity_id, 88 | name=row['name'], 89 | created=entity_creation_date, 90 | description=row['description'], 91 | contact_information=row['contact_information'], 92 | identity_class='organization', 93 | created_by_ref=creator, 94 | object_marking_refs=[TLP_WHITE], 95 | confidence=100, 96 | revoked=False, 97 | custom_properties={ 98 | 'x_opencti_aliases': aliases, 99 | 'x_opencti_organization_type': row['x_opencti_organization_type'], 100 | 'x_opencti_stix_ids': stix_ids, 101 | } 102 | ) 103 | bundles.append(company) 104 | 105 | company_sectors = row['sectors'].split(',') 106 | for company_sector in company_sectors: 107 | if company_sector == '': 108 | print(f"Error: Organization {row['name']} has no Sector assigned!!") 109 | return [] 110 | 111 | relevant_sector = sectors.get(company_sector, None) 112 | # search through aliases 113 | if relevant_sector is None: 114 | for sector_name, sector in sectors.items(): 115 | aliases = sector.get('x_opencti_aliases', []) 116 | if company_sector in aliases: 117 | relevant_sector = sector 118 | 119 | if relevant_sector is None: 120 | print(f"Sector '{company_sector}' for company '{row['name']}' can't be found") 121 | continue 122 | 123 | relationship_id = None 124 | relationship_name = f"{company.id}_{relevant_sector['id']}" 125 | relationship_creation_date = None 126 | if relationship_name in companies: 127 | relationship_id = companies[relationship_name]['id'] 128 | relationship_creation_date = companies[relationship_name]['created'] 129 | 130 | sector_relationship = Relationship( 131 | id=relationship_id, 132 | created=relationship_creation_date, 133 | relationship_type='part-of', 134 | source_ref=company.id, 135 | target_ref=relevant_sector['id'], 136 | description=f"Company '{row['name']}' is part of sector '{company_sector}'", 137 | confidence=100, 138 | revoked=False, 139 | created_by_ref=creator, 140 | object_marking_refs=[TLP_WHITE], 141 | ) 142 | 143 | bundles.append(sector_relationship) 144 | 145 | if bundle_id: 146 | bundle = Bundle( 147 | objects=bundles, 148 | id=bundle_id, 149 | allow_custom=True 150 | ) 151 | else: 152 | bundle = Bundle( 153 | objects=bundles, 154 | allow_custom=True 155 | ) 156 | 157 | return bundle 158 | 159 | 160 | companies_json, bundle_id = get_name_and_ids(out_file, ['identity']) 161 | sectors_json, _ = get_name_and_ids(sector_file, ['identity']) 162 | bundle = update_list(bundle_id, raw_file, companies_json, sectors_json) 163 | with open(out_file, 'w') as fh: 164 | fh.write(bundle.serialize(pretty=True, include_optional_defaults=True)) 165 | 166 | 167 | 168 | 169 | -------------------------------------------------------------------------------- /scripts/geography.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | import csv 4 | from stix2 import Bundle, Identity, Location, Relationship, TLP_WHITE 5 | 6 | csv_file = open('../raw/geo.csv', mode='r', encoding='utf-8') 7 | 8 | geography = csv.reader(csv_file, delimiter=',', quotechar='"') 9 | filigran = Identity( 10 | id='identity--8cb00c79-ab20-5ed4-b37d-337241b96a29', 11 | name="Filigran", 12 | description="Filigran is a cybertech founded in 2022, providing cyber threat intelligence, adversary simulation and crisis management solutions to cybersecurity teams across the world.", 13 | identity_class="organization", 14 | object_marking_refs=[TLP_WHITE], 15 | confidence=100, 16 | revoked=False, 17 | custom_properties={ 18 | 'x_opencti_organization_type': 'vendor', 19 | } 20 | ) 21 | 22 | i = 0 23 | bundle_objects = [filigran] 24 | regions = {} 25 | subregions = {} 26 | relations = {} 27 | for row in geography: 28 | if i == 0: 29 | i += 1 30 | continue 31 | id_region = row[0] 32 | id_subregion = row[1] 33 | id_country = row[2] 34 | region = row[3] 35 | subregion = row[4] 36 | country = row[6] 37 | country_code = row[7] 38 | country_code2 = row[8] 39 | country_lat = row[9] 40 | country_lng = row[10] 41 | regionlat = row[11] 42 | regionlng = row[12] 43 | subregionlat = row[13] 44 | subregionlng = row[14] 45 | if region: 46 | if region not in regions: 47 | stix_region = Location( 48 | id='location--' + id_region, 49 | name=region, 50 | region=region, 51 | latitude=float(regionlat) if len(regionlat) > 0 else None, 52 | longitude=float(regionlng) if len(regionlng) > 0 else None, 53 | created_by_ref=filigran, 54 | object_marking_refs=[TLP_WHITE], 55 | confidence=100, 56 | revoked=False, 57 | custom_properties={ 58 | 'x_opencti_location_type': 'Region' 59 | } 60 | ) 61 | regions[region] = stix_region 62 | bundle_objects.append(stix_region) 63 | if subregion: 64 | if subregion not in subregions: 65 | stix_subregion = Location( 66 | id='location--' + id_subregion, 67 | name=subregion, 68 | region=subregion, 69 | latitude=float(subregionlat) if len(subregionlat) > 0 else None, 70 | longitude=float(subregionlng) if len(subregionlng) > 0 else None, 71 | created_by_ref=filigran, 72 | object_marking_refs=[TLP_WHITE], 73 | confidence=100, 74 | revoked=False, 75 | custom_properties={ 76 | 'x_opencti_location_type': 'Region' 77 | } 78 | ) 79 | bundle_objects.append(stix_subregion) 80 | subregions[subregion] = stix_subregion 81 | if region: 82 | stix_subregion_relationship = Relationship( 83 | relationship_type='located-at', 84 | source_ref=stix_subregion.id, 85 | target_ref=regions[region].id, 86 | description='Region ' + stix_subregion.name + ' is located in ' + regions[region].name, 87 | confidence=100, 88 | revoked=False, 89 | created_by_ref=filigran, 90 | object_marking_refs=[TLP_WHITE], 91 | ) 92 | bundle_objects.append(stix_subregion_relationship) 93 | stix_country = Location( 94 | id='location--' + id_country, 95 | name=country, 96 | country=country_code, 97 | latitude=float(country_lat) if len(country_lat) > 0 else None, 98 | longitude=float(country_lng) if len(country_lng) > 0 else None, 99 | created_by_ref=filigran, 100 | object_marking_refs=[TLP_WHITE], 101 | confidence=100, 102 | revoked=False, 103 | custom_properties={ 104 | 'x_opencti_location_type': 'Country', 105 | 'x_opencti_aliases': [country_code, country_code2] 106 | } 107 | ) 108 | bundle_objects.append(stix_country) 109 | if region and subregion: 110 | stix_country_relationship = Relationship( 111 | relationship_type='located-at', 112 | source_ref=stix_country.id, 113 | target_ref=subregions[subregion].id, 114 | description='Country ' + stix_country.name + ' is located in ' + subregions[subregion].name, 115 | object_marking_refs=[TLP_WHITE], 116 | confidence=100, 117 | revoked=False, 118 | created_by_ref=filigran, 119 | ) 120 | bundle_objects.append(stix_country_relationship) 121 | elif region: 122 | stix_country_relationship = Relationship( 123 | relationship_type='located-at', 124 | source_ref=stix_country.id, 125 | target_ref=regions[region].id, 126 | description='Country ' + stix_country.name + ' is located in ' + regions[region].name, 127 | object_marking_refs=[TLP_WHITE], 128 | confidence=100, 129 | revoked=False, 130 | created_by_ref=filigran, 131 | ) 132 | bundle_objects.append(stix_country_relationship) 133 | i += 1 134 | 135 | bundle = Bundle(objects=bundle_objects, allow_custom=True) 136 | fh = open('../data/geography.json', 'w') 137 | fh.write(bundle.serialize(pretty=True, include_optional_defaults=True)) 138 | fh.close() 139 | -------------------------------------------------------------------------------- /scripts/sectors.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | 3 | import json 4 | from stix2 import Bundle, Identity, Relationship, TLP_WHITE 5 | 6 | with open('../raw/sectors.json', mode='r', encoding='utf-8') as json_file: 7 | sectors = json.load(json_file) 8 | 9 | filigran = Identity( 10 | id='identity--8cb00c79-ab20-5ed4-b37d-337241b96a29', 11 | name="Filigran", 12 | description="Filigran is a cybertech founded in 2022, providing cyber threat intelligence, adversary simulation and crisis management solutions to cybersecurity teams across the world.", 13 | identity_class="organization", 14 | object_marking_refs=[TLP_WHITE], 15 | confidence=100, 16 | revoked=False, 17 | custom_properties={ 18 | 'x_opencti_organization_type': 'vendor', 19 | } 20 | ) 21 | 22 | bundle_objects = [filigran] 23 | for sector in sectors: 24 | stix_sector = Identity( 25 | id=sector['stix_id'], 26 | name=sector['name'], 27 | description=sector['description'], 28 | identity_class='class', 29 | created_by_ref=filigran, 30 | object_marking_refs=[TLP_WHITE], 31 | confidence=100, 32 | revoked=False, 33 | custom_properties={ 34 | 'x_opencti_aliases': sector['aliases'], 35 | } 36 | ) 37 | bundle_objects.append(stix_sector) 38 | if 'subsectors' in sector: 39 | for subsector in sector['subsectors']: 40 | stix_subsector = Identity( 41 | id=subsector['stix_id'], 42 | name=subsector['name'], 43 | description=subsector['description'], 44 | identity_class='class', 45 | created_by_ref=filigran, 46 | object_marking_refs=[TLP_WHITE], 47 | confidence=100, 48 | revoked=False, 49 | custom_properties={ 50 | 'x_opencti_aliases': subsector['aliases'], 51 | } 52 | ) 53 | bundle_objects.append(stix_subsector) 54 | stix_subsector_relationship = Relationship( 55 | relationship_type='part-of', 56 | source_ref=stix_subsector.id, 57 | target_ref=stix_sector.id, 58 | description='Sector ' + stix_subsector.name + ' is a subsector of ' + stix_sector.name, 59 | created_by_ref=filigran, 60 | object_marking_refs=[TLP_WHITE], 61 | confidence=100, 62 | revoked=False, 63 | ) 64 | bundle_objects.append(stix_subsector_relationship) 65 | 66 | bundle = Bundle(objects=bundle_objects, allow_custom=True) 67 | fh = open('../data/sectors.json', 'w') 68 | fh.write(bundle.serialize(pretty=True, include_optional_defaults=True)) 69 | fh.close() 70 | --------------------------------------------------------------------------------