polyfile-weave 0.5.5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of polyfile-weave might be problematic. Click here for more details.

Files changed (585) hide show
  1. polyfile/__init__.py +15 -0
  2. polyfile/__main__.py +394 -0
  3. polyfile/arithmetic.py +27 -0
  4. polyfile/ast.py +114 -0
  5. polyfile/debugger.py +1039 -0
  6. polyfile/expressions.py +346 -0
  7. polyfile/fileutils.py +343 -0
  8. polyfile/html.py +135 -0
  9. polyfile/http/__init__.py +1 -0
  10. polyfile/http/defacto.py +37 -0
  11. polyfile/http/deprecated.py +51 -0
  12. polyfile/http/experimental.py +67 -0
  13. polyfile/http/http_11.py +548 -0
  14. polyfile/http/matcher.py +37 -0
  15. polyfile/http/structured_headers.py +48 -0
  16. polyfile/iterators.py +72 -0
  17. polyfile/jpeg.py +24 -0
  18. polyfile/kaitai/__init__.py +0 -0
  19. polyfile/kaitai/compiler.py +156 -0
  20. polyfile/kaitai/parser.py +312 -0
  21. polyfile/kaitai/parsers/__init__.py +0 -0
  22. polyfile/kaitai/parsers/aix_utmp.py +116 -0
  23. polyfile/kaitai/parsers/allegro_dat.py +367 -0
  24. polyfile/kaitai/parsers/andes_firmware.py +64 -0
  25. polyfile/kaitai/parsers/android_bootldr_asus.py +105 -0
  26. polyfile/kaitai/parsers/android_bootldr_huawei.py +181 -0
  27. polyfile/kaitai/parsers/android_bootldr_qcom.py +217 -0
  28. polyfile/kaitai/parsers/android_dto.py +138 -0
  29. polyfile/kaitai/parsers/android_img.py +319 -0
  30. polyfile/kaitai/parsers/android_nanoapp_header.py +83 -0
  31. polyfile/kaitai/parsers/android_opengl_shaders_cache.py +151 -0
  32. polyfile/kaitai/parsers/android_sparse.py +237 -0
  33. polyfile/kaitai/parsers/android_super.py +401 -0
  34. polyfile/kaitai/parsers/apm_partition_table.py +196 -0
  35. polyfile/kaitai/parsers/apple_single_double.py +180 -0
  36. polyfile/kaitai/parsers/asn1_der.py +235 -0
  37. polyfile/kaitai/parsers/au.py +138 -0
  38. polyfile/kaitai/parsers/avantes_roh60.py +112 -0
  39. polyfile/kaitai/parsers/avi.py +296 -0
  40. polyfile/kaitai/parsers/bcd.py +111 -0
  41. polyfile/kaitai/parsers/bitcoin_transaction.py +210 -0
  42. polyfile/kaitai/parsers/blender_blend.py +334 -0
  43. polyfile/kaitai/parsers/bmp.py +780 -0
  44. polyfile/kaitai/parsers/bson.py +411 -0
  45. polyfile/kaitai/parsers/btrfs_stream.py +318 -0
  46. polyfile/kaitai/parsers/bytes_with_io.py +27 -0
  47. polyfile/kaitai/parsers/chrome_pak.py +194 -0
  48. polyfile/kaitai/parsers/code_6502.py +456 -0
  49. polyfile/kaitai/parsers/compressed_resource.py +217 -0
  50. polyfile/kaitai/parsers/cpio_old_le.py +154 -0
  51. polyfile/kaitai/parsers/cramfs.py +344 -0
  52. polyfile/kaitai/parsers/creative_voice_file.py +342 -0
  53. polyfile/kaitai/parsers/dbf.py +274 -0
  54. polyfile/kaitai/parsers/dcmp_0.py +664 -0
  55. polyfile/kaitai/parsers/dcmp_1.py +422 -0
  56. polyfile/kaitai/parsers/dcmp_2.py +312 -0
  57. polyfile/kaitai/parsers/dcmp_variable_length_integer.py +66 -0
  58. polyfile/kaitai/parsers/dex.py +1086 -0
  59. polyfile/kaitai/parsers/dicom.py +4370 -0
  60. polyfile/kaitai/parsers/dime_message.py +201 -0
  61. polyfile/kaitai/parsers/dns_packet.py +569 -0
  62. polyfile/kaitai/parsers/doom_wad.py +654 -0
  63. polyfile/kaitai/parsers/dos_datetime.py +191 -0
  64. polyfile/kaitai/parsers/dos_mz.py +172 -0
  65. polyfile/kaitai/parsers/ds_store.py +513 -0
  66. polyfile/kaitai/parsers/dtb.py +310 -0
  67. polyfile/kaitai/parsers/dune_2_pak.py +126 -0
  68. polyfile/kaitai/parsers/edid.py +472 -0
  69. polyfile/kaitai/parsers/efivar_signature_list.py +331 -0
  70. polyfile/kaitai/parsers/elf.py +2482 -0
  71. polyfile/kaitai/parsers/ethernet_frame.py +114 -0
  72. polyfile/kaitai/parsers/exif.py +723 -0
  73. polyfile/kaitai/parsers/ext2.py +537 -0
  74. polyfile/kaitai/parsers/fallout2_dat.py +187 -0
  75. polyfile/kaitai/parsers/fallout_dat.py +156 -0
  76. polyfile/kaitai/parsers/fasttracker_xm_module.py +558 -0
  77. polyfile/kaitai/parsers/ftl_dat.py +90 -0
  78. polyfile/kaitai/parsers/genmidi_op2.py +161 -0
  79. polyfile/kaitai/parsers/gettext_mo.py +541 -0
  80. polyfile/kaitai/parsers/gif.py +492 -0
  81. polyfile/kaitai/parsers/gimp_brush.py +244 -0
  82. polyfile/kaitai/parsers/glibc_utmp.py +114 -0
  83. polyfile/kaitai/parsers/gltf_binary.py +132 -0
  84. polyfile/kaitai/parsers/google_protobuf.py +151 -0
  85. polyfile/kaitai/parsers/gpt_partition_table.py +175 -0
  86. polyfile/kaitai/parsers/gran_turismo_vol.py +140 -0
  87. polyfile/kaitai/parsers/grub2_font.py +337 -0
  88. polyfile/kaitai/parsers/gzip.py +232 -0
  89. polyfile/kaitai/parsers/hashcat_restore.py +60 -0
  90. polyfile/kaitai/parsers/hccap.py +111 -0
  91. polyfile/kaitai/parsers/hccapx.py +103 -0
  92. polyfile/kaitai/parsers/heaps_pak.py +177 -0
  93. polyfile/kaitai/parsers/heroes_of_might_and_magic_agg.py +116 -0
  94. polyfile/kaitai/parsers/heroes_of_might_and_magic_bmp.py +34 -0
  95. polyfile/kaitai/parsers/icmp_packet.py +136 -0
  96. polyfile/kaitai/parsers/ico.py +129 -0
  97. polyfile/kaitai/parsers/id3v1_1.py +220 -0
  98. polyfile/kaitai/parsers/id3v2_3.py +324 -0
  99. polyfile/kaitai/parsers/id3v2_4.py +423 -0
  100. polyfile/kaitai/parsers/ines.py +282 -0
  101. polyfile/kaitai/parsers/ipv4_packet.py +158 -0
  102. polyfile/kaitai/parsers/ipv6_packet.py +55 -0
  103. polyfile/kaitai/parsers/iso9660.py +544 -0
  104. polyfile/kaitai/parsers/java_class.py +1113 -0
  105. polyfile/kaitai/parsers/jpeg.py +361 -0
  106. polyfile/kaitai/parsers/luks.py +149 -0
  107. polyfile/kaitai/parsers/lzh.py +165 -0
  108. polyfile/kaitai/parsers/mac_os_resource_snd.py +493 -0
  109. polyfile/kaitai/parsers/mach_o.py +3033 -0
  110. polyfile/kaitai/parsers/mach_o_fat.py +92 -0
  111. polyfile/kaitai/parsers/magicavoxel_vox.py +391 -0
  112. polyfile/kaitai/parsers/manifest.json +1 -0
  113. polyfile/kaitai/parsers/mbr_partition_table.py +119 -0
  114. polyfile/kaitai/parsers/mcap.py +1015 -0
  115. polyfile/kaitai/parsers/microsoft_cfb.py +293 -0
  116. polyfile/kaitai/parsers/microsoft_network_monitor_v2.py +309 -0
  117. polyfile/kaitai/parsers/microsoft_pe.py +765 -0
  118. polyfile/kaitai/parsers/mifare_classic.py +706 -0
  119. polyfile/kaitai/parsers/minecraft_nbt.py +449 -0
  120. polyfile/kaitai/parsers/monomakh_sapr_chg.py +69 -0
  121. polyfile/kaitai/parsers/mozilla_mar.py +239 -0
  122. polyfile/kaitai/parsers/mp4.py +333 -0
  123. polyfile/kaitai/parsers/msgpack.py +467 -0
  124. polyfile/kaitai/parsers/nitf.py +1189 -0
  125. polyfile/kaitai/parsers/nt_mdt_pal.py +155 -0
  126. polyfile/kaitai/parsers/ogg.py +118 -0
  127. polyfile/kaitai/parsers/openpgp_message.py +993 -0
  128. polyfile/kaitai/parsers/packet_ppi.py +515 -0
  129. polyfile/kaitai/parsers/pcap.py +344 -0
  130. polyfile/kaitai/parsers/pcf_font.py +506 -0
  131. polyfile/kaitai/parsers/pcx.py +195 -0
  132. polyfile/kaitai/parsers/pcx_dcx.py +79 -0
  133. polyfile/kaitai/parsers/phar_without_stub.py +399 -0
  134. polyfile/kaitai/parsers/php_serialized_value.py +505 -0
  135. polyfile/kaitai/parsers/png.py +721 -0
  136. polyfile/kaitai/parsers/protocol_body.py +260 -0
  137. polyfile/kaitai/parsers/psx_tim.py +104 -0
  138. polyfile/kaitai/parsers/python_pickle.py +718 -0
  139. polyfile/kaitai/parsers/python_pyc_27.py +510 -0
  140. polyfile/kaitai/parsers/quake_mdl.py +441 -0
  141. polyfile/kaitai/parsers/quake_pak.py +112 -0
  142. polyfile/kaitai/parsers/quicktime_mov.py +634 -0
  143. polyfile/kaitai/parsers/rar.py +265 -0
  144. polyfile/kaitai/parsers/regf.py +569 -0
  145. polyfile/kaitai/parsers/renderware_binary_stream.py +877 -0
  146. polyfile/kaitai/parsers/resource_fork.py +611 -0
  147. polyfile/kaitai/parsers/respack.py +57 -0
  148. polyfile/kaitai/parsers/riff.py +409 -0
  149. polyfile/kaitai/parsers/rpm.py +964 -0
  150. polyfile/kaitai/parsers/rtcp_payload.py +579 -0
  151. polyfile/kaitai/parsers/rtp_packet.py +150 -0
  152. polyfile/kaitai/parsers/rtpdump.py +115 -0
  153. polyfile/kaitai/parsers/ruby_marshal.py +423 -0
  154. polyfile/kaitai/parsers/s3m.py +493 -0
  155. polyfile/kaitai/parsers/saints_row_2_vpp_pc.py +254 -0
  156. polyfile/kaitai/parsers/shapefile_index.py +174 -0
  157. polyfile/kaitai/parsers/shapefile_main.py +893 -0
  158. polyfile/kaitai/parsers/some_ip.py +209 -0
  159. polyfile/kaitai/parsers/some_ip_container.py +37 -0
  160. polyfile/kaitai/parsers/some_ip_sd.py +86 -0
  161. polyfile/kaitai/parsers/some_ip_sd_entries.py +160 -0
  162. polyfile/kaitai/parsers/some_ip_sd_options.py +374 -0
  163. polyfile/kaitai/parsers/specpr.py +404 -0
  164. polyfile/kaitai/parsers/sqlite3.py +472 -0
  165. polyfile/kaitai/parsers/ssh_public_key.py +252 -0
  166. polyfile/kaitai/parsers/standard_midi_file.py +390 -0
  167. polyfile/kaitai/parsers/stl.py +111 -0
  168. polyfile/kaitai/parsers/sudoers_ts.py +201 -0
  169. polyfile/kaitai/parsers/swf.py +406 -0
  170. polyfile/kaitai/parsers/systemd_journal.py +361 -0
  171. polyfile/kaitai/parsers/tcp_segment.py +57 -0
  172. polyfile/kaitai/parsers/tga.py +213 -0
  173. polyfile/kaitai/parsers/tls_client_hello.py +293 -0
  174. polyfile/kaitai/parsers/tr_dos_image.py +322 -0
  175. polyfile/kaitai/parsers/tsm.py +198 -0
  176. polyfile/kaitai/parsers/ttf.py +1847 -0
  177. polyfile/kaitai/parsers/udp_datagram.py +42 -0
  178. polyfile/kaitai/parsers/uefi_te.py +236 -0
  179. polyfile/kaitai/parsers/uimage.py +198 -0
  180. polyfile/kaitai/parsers/utf8_string.py +137 -0
  181. polyfile/kaitai/parsers/vfat.py +410 -0
  182. polyfile/kaitai/parsers/vlq_base128_be.py +104 -0
  183. polyfile/kaitai/parsers/vlq_base128_le.py +129 -0
  184. polyfile/kaitai/parsers/vmware_vmdk.py +167 -0
  185. polyfile/kaitai/parsers/vp8_ivf.py +112 -0
  186. polyfile/kaitai/parsers/warcraft_2_pud.py +423 -0
  187. polyfile/kaitai/parsers/wav.py +1014 -0
  188. polyfile/kaitai/parsers/websocket.py +167 -0
  189. polyfile/kaitai/parsers/windows_evt_log.py +304 -0
  190. polyfile/kaitai/parsers/windows_lnk_file.py +467 -0
  191. polyfile/kaitai/parsers/windows_minidump.py +575 -0
  192. polyfile/kaitai/parsers/windows_resource_file.py +243 -0
  193. polyfile/kaitai/parsers/windows_shell_items.py +190 -0
  194. polyfile/kaitai/parsers/windows_systemtime.py +52 -0
  195. polyfile/kaitai/parsers/wmf.py +502 -0
  196. polyfile/kaitai/parsers/xar.py +181 -0
  197. polyfile/kaitai/parsers/xwd.py +189 -0
  198. polyfile/kaitai/parsers/zip.py +685 -0
  199. polyfile/kaitai/parsers/zisofs.py +158 -0
  200. polyfile/kaitai/parsers/zx_spectrum_tap.py +184 -0
  201. polyfile/kaitaimatcher.py +113 -0
  202. polyfile/languagematcher.py +217 -0
  203. polyfile/logger.py +135 -0
  204. polyfile/magic.py +2983 -0
  205. polyfile/magic_defs/COPYING +29 -0
  206. polyfile/magic_defs/__init__.py +0 -0
  207. polyfile/magic_defs/acorn +102 -0
  208. polyfile/magic_defs/adi +13 -0
  209. polyfile/magic_defs/adventure +122 -0
  210. polyfile/magic_defs/aes +29 -0
  211. polyfile/magic_defs/algol68 +35 -0
  212. polyfile/magic_defs/allegro +9 -0
  213. polyfile/magic_defs/alliant +18 -0
  214. polyfile/magic_defs/alpha +32 -0
  215. polyfile/magic_defs/amanda +12 -0
  216. polyfile/magic_defs/amigaos +218 -0
  217. polyfile/magic_defs/android +259 -0
  218. polyfile/magic_defs/animation +1197 -0
  219. polyfile/magic_defs/aout +46 -0
  220. polyfile/magic_defs/apache +28 -0
  221. polyfile/magic_defs/apl +7 -0
  222. polyfile/magic_defs/apple +773 -0
  223. polyfile/magic_defs/application +7 -0
  224. polyfile/magic_defs/applix +13 -0
  225. polyfile/magic_defs/apt +52 -0
  226. polyfile/magic_defs/archive +2586 -0
  227. polyfile/magic_defs/aria +38 -0
  228. polyfile/magic_defs/arm +50 -0
  229. polyfile/magic_defs/asf +132 -0
  230. polyfile/magic_defs/assembler +18 -0
  231. polyfile/magic_defs/asterix +18 -0
  232. polyfile/magic_defs/att3b +41 -0
  233. polyfile/magic_defs/audio +1291 -0
  234. polyfile/magic_defs/avm +33 -0
  235. polyfile/magic_defs/basis +18 -0
  236. polyfile/magic_defs/beetle +7 -0
  237. polyfile/magic_defs/ber +65 -0
  238. polyfile/magic_defs/bflt +14 -0
  239. polyfile/magic_defs/bhl +10 -0
  240. polyfile/magic_defs/bioinformatics +178 -0
  241. polyfile/magic_defs/biosig +154 -0
  242. polyfile/magic_defs/blackberry +8 -0
  243. polyfile/magic_defs/blcr +25 -0
  244. polyfile/magic_defs/blender +50 -0
  245. polyfile/magic_defs/blit +24 -0
  246. polyfile/magic_defs/bm +10 -0
  247. polyfile/magic_defs/bout +11 -0
  248. polyfile/magic_defs/bsdi +33 -0
  249. polyfile/magic_defs/bsi +10 -0
  250. polyfile/magic_defs/btsnoop +13 -0
  251. polyfile/magic_defs/burp +7 -0
  252. polyfile/magic_defs/bytecode +41 -0
  253. polyfile/magic_defs/c-lang +110 -0
  254. polyfile/magic_defs/c64 +531 -0
  255. polyfile/magic_defs/cad +437 -0
  256. polyfile/magic_defs/cafebabe +107 -0
  257. polyfile/magic_defs/cbor +21 -0
  258. polyfile/magic_defs/ccf +14 -0
  259. polyfile/magic_defs/cddb +12 -0
  260. polyfile/magic_defs/chord +15 -0
  261. polyfile/magic_defs/cisco +12 -0
  262. polyfile/magic_defs/citrus +12 -0
  263. polyfile/magic_defs/clarion +27 -0
  264. polyfile/magic_defs/claris +48 -0
  265. polyfile/magic_defs/clipper +65 -0
  266. polyfile/magic_defs/clojure +30 -0
  267. polyfile/magic_defs/coff +98 -0
  268. polyfile/magic_defs/commands +201 -0
  269. polyfile/magic_defs/communications +22 -0
  270. polyfile/magic_defs/compress +461 -0
  271. polyfile/magic_defs/console +1213 -0
  272. polyfile/magic_defs/convex +69 -0
  273. polyfile/magic_defs/coverage +91 -0
  274. polyfile/magic_defs/cracklib +14 -0
  275. polyfile/magic_defs/crypto +31 -0
  276. polyfile/magic_defs/csv +8 -0
  277. polyfile/magic_defs/ctags +6 -0
  278. polyfile/magic_defs/ctf +23 -0
  279. polyfile/magic_defs/cubemap +8 -0
  280. polyfile/magic_defs/cups +56 -0
  281. polyfile/magic_defs/dact +11 -0
  282. polyfile/magic_defs/database +886 -0
  283. polyfile/magic_defs/dataone +47 -0
  284. polyfile/magic_defs/dbpf +15 -0
  285. polyfile/magic_defs/der +146 -0
  286. polyfile/magic_defs/diamond +12 -0
  287. polyfile/magic_defs/dif +33 -0
  288. polyfile/magic_defs/diff +41 -0
  289. polyfile/magic_defs/digital +59 -0
  290. polyfile/magic_defs/dolby +69 -0
  291. polyfile/magic_defs/dsf +25 -0
  292. polyfile/magic_defs/dump +96 -0
  293. polyfile/magic_defs/dwarfs +45 -0
  294. polyfile/magic_defs/dyadic +61 -0
  295. polyfile/magic_defs/ebml +8 -0
  296. polyfile/magic_defs/edid +11 -0
  297. polyfile/magic_defs/editors +43 -0
  298. polyfile/magic_defs/efi +15 -0
  299. polyfile/magic_defs/elf +379 -0
  300. polyfile/magic_defs/encore +22 -0
  301. polyfile/magic_defs/epoc +62 -0
  302. polyfile/magic_defs/erlang +21 -0
  303. polyfile/magic_defs/espressif +57 -0
  304. polyfile/magic_defs/esri +28 -0
  305. polyfile/magic_defs/etf +33 -0
  306. polyfile/magic_defs/fcs +9 -0
  307. polyfile/magic_defs/filesystems +2694 -0
  308. polyfile/magic_defs/finger +16 -0
  309. polyfile/magic_defs/firmware +133 -0
  310. polyfile/magic_defs/flash +62 -0
  311. polyfile/magic_defs/flif +36 -0
  312. polyfile/magic_defs/fonts +449 -0
  313. polyfile/magic_defs/forth +82 -0
  314. polyfile/magic_defs/fortran +9 -0
  315. polyfile/magic_defs/frame +62 -0
  316. polyfile/magic_defs/freebsd +164 -0
  317. polyfile/magic_defs/fsav +128 -0
  318. polyfile/magic_defs/fusecompress +12 -0
  319. polyfile/magic_defs/games +696 -0
  320. polyfile/magic_defs/gcc +17 -0
  321. polyfile/magic_defs/gconv +10 -0
  322. polyfile/magic_defs/gentoo +85 -0
  323. polyfile/magic_defs/geo +166 -0
  324. polyfile/magic_defs/geos +20 -0
  325. polyfile/magic_defs/gimp +77 -0
  326. polyfile/magic_defs/git +13 -0
  327. polyfile/magic_defs/glibc +21 -0
  328. polyfile/magic_defs/gnome +59 -0
  329. polyfile/magic_defs/gnu +173 -0
  330. polyfile/magic_defs/gnumeric +8 -0
  331. polyfile/magic_defs/gpt +240 -0
  332. polyfile/magic_defs/gpu +28 -0
  333. polyfile/magic_defs/grace +21 -0
  334. polyfile/magic_defs/graphviz +12 -0
  335. polyfile/magic_defs/gringotts +48 -0
  336. polyfile/magic_defs/guile +13 -0
  337. polyfile/magic_defs/hardware +12 -0
  338. polyfile/magic_defs/hitachi-sh +30 -0
  339. polyfile/magic_defs/hp +433 -0
  340. polyfile/magic_defs/human68k +26 -0
  341. polyfile/magic_defs/ibm370 +52 -0
  342. polyfile/magic_defs/ibm6000 +35 -0
  343. polyfile/magic_defs/icc +214 -0
  344. polyfile/magic_defs/iff +80 -0
  345. polyfile/magic_defs/images +4210 -0
  346. polyfile/magic_defs/inform +9 -0
  347. polyfile/magic_defs/intel +310 -0
  348. polyfile/magic_defs/interleaf +9 -0
  349. polyfile/magic_defs/island +10 -0
  350. polyfile/magic_defs/ispell +63 -0
  351. polyfile/magic_defs/isz +15 -0
  352. polyfile/magic_defs/java +52 -0
  353. polyfile/magic_defs/javascript +171 -0
  354. polyfile/magic_defs/jpeg +252 -0
  355. polyfile/magic_defs/json +8 -0
  356. polyfile/magic_defs/karma +9 -0
  357. polyfile/magic_defs/kde +11 -0
  358. polyfile/magic_defs/keepass +20 -0
  359. polyfile/magic_defs/kerberos +45 -0
  360. polyfile/magic_defs/kicad +85 -0
  361. polyfile/magic_defs/kml +34 -0
  362. polyfile/magic_defs/lammps +64 -0
  363. polyfile/magic_defs/lecter +6 -0
  364. polyfile/magic_defs/lex +12 -0
  365. polyfile/magic_defs/lif +50 -0
  366. polyfile/magic_defs/linux +557 -0
  367. polyfile/magic_defs/lisp +78 -0
  368. polyfile/magic_defs/llvm +22 -0
  369. polyfile/magic_defs/locoscript +12 -0
  370. polyfile/magic_defs/lua +31 -0
  371. polyfile/magic_defs/luks +126 -0
  372. polyfile/magic_defs/m4 +11 -0
  373. polyfile/magic_defs/mach +303 -0
  374. polyfile/magic_defs/macintosh +505 -0
  375. polyfile/magic_defs/macos +7 -0
  376. polyfile/magic_defs/magic +10 -0
  377. polyfile/magic_defs/magic.mgc +0 -0
  378. polyfile/magic_defs/mail.news +132 -0
  379. polyfile/magic_defs/make +21 -0
  380. polyfile/magic_defs/map +413 -0
  381. polyfile/magic_defs/maple +109 -0
  382. polyfile/magic_defs/marc21 +30 -0
  383. polyfile/magic_defs/mathcad +8 -0
  384. polyfile/magic_defs/mathematica +188 -0
  385. polyfile/magic_defs/matroska +17 -0
  386. polyfile/magic_defs/mcrypt +52 -0
  387. polyfile/magic_defs/measure +44 -0
  388. polyfile/magic_defs/mercurial +13 -0
  389. polyfile/magic_defs/metastore +8 -0
  390. polyfile/magic_defs/meteorological +53 -0
  391. polyfile/magic_defs/microfocus +21 -0
  392. polyfile/magic_defs/mime +9 -0
  393. polyfile/magic_defs/mips +120 -0
  394. polyfile/magic_defs/mirage +8 -0
  395. polyfile/magic_defs/misctools +140 -0
  396. polyfile/magic_defs/mkid +11 -0
  397. polyfile/magic_defs/mlssa +8 -0
  398. polyfile/magic_defs/mmdf +6 -0
  399. polyfile/magic_defs/modem +92 -0
  400. polyfile/magic_defs/modulefile +9 -0
  401. polyfile/magic_defs/motorola +71 -0
  402. polyfile/magic_defs/mozilla +37 -0
  403. polyfile/magic_defs/msdos +2304 -0
  404. polyfile/magic_defs/msooxml +68 -0
  405. polyfile/magic_defs/msvc +222 -0
  406. polyfile/magic_defs/msx +309 -0
  407. polyfile/magic_defs/mup +24 -0
  408. polyfile/magic_defs/music +17 -0
  409. polyfile/magic_defs/nasa +7 -0
  410. polyfile/magic_defs/natinst +24 -0
  411. polyfile/magic_defs/ncr +49 -0
  412. polyfile/magic_defs/neko +12 -0
  413. polyfile/magic_defs/netbsd +251 -0
  414. polyfile/magic_defs/netscape +26 -0
  415. polyfile/magic_defs/netware +11 -0
  416. polyfile/magic_defs/news +13 -0
  417. polyfile/magic_defs/nifty +202 -0
  418. polyfile/magic_defs/nim-lang +29 -0
  419. polyfile/magic_defs/nitpicker +14 -0
  420. polyfile/magic_defs/numpy +9 -0
  421. polyfile/magic_defs/oasis +12 -0
  422. polyfile/magic_defs/ocaml +14 -0
  423. polyfile/magic_defs/octave +6 -0
  424. polyfile/magic_defs/ole2compounddocs +760 -0
  425. polyfile/magic_defs/olf +98 -0
  426. polyfile/magic_defs/openfst +17 -0
  427. polyfile/magic_defs/opentimestamps +16 -0
  428. polyfile/magic_defs/oric +16 -0
  429. polyfile/magic_defs/os2 +186 -0
  430. polyfile/magic_defs/os400 +39 -0
  431. polyfile/magic_defs/os9 +80 -0
  432. polyfile/magic_defs/osf1 +10 -0
  433. polyfile/magic_defs/palm +156 -0
  434. polyfile/magic_defs/parix +13 -0
  435. polyfile/magic_defs/parrot +22 -0
  436. polyfile/magic_defs/pascal +39 -0
  437. polyfile/magic_defs/pbf +11 -0
  438. polyfile/magic_defs/pbm +8 -0
  439. polyfile/magic_defs/pc88 +24 -0
  440. polyfile/magic_defs/pc98 +77 -0
  441. polyfile/magic_defs/pci_ids +116 -0
  442. polyfile/magic_defs/pcjr +8 -0
  443. polyfile/magic_defs/pdf +51 -0
  444. polyfile/magic_defs/pdp +42 -0
  445. polyfile/magic_defs/perl +100 -0
  446. polyfile/magic_defs/pgf +52 -0
  447. polyfile/magic_defs/pgp +581 -0
  448. polyfile/magic_defs/pgp-binary-keys +388 -0
  449. polyfile/magic_defs/pkgadd +7 -0
  450. polyfile/magic_defs/plan9 +25 -0
  451. polyfile/magic_defs/playdate +57 -0
  452. polyfile/magic_defs/plus5 +18 -0
  453. polyfile/magic_defs/pmem +46 -0
  454. polyfile/magic_defs/polyfile_zip +5 -0
  455. polyfile/magic_defs/polyml +23 -0
  456. polyfile/magic_defs/printer +269 -0
  457. polyfile/magic_defs/project +10 -0
  458. polyfile/magic_defs/psdbms +14 -0
  459. polyfile/magic_defs/psl +14 -0
  460. polyfile/magic_defs/pulsar +13 -0
  461. polyfile/magic_defs/puzzle +17 -0
  462. polyfile/magic_defs/pwsafe +14 -0
  463. polyfile/magic_defs/pyramid +12 -0
  464. polyfile/magic_defs/python +305 -0
  465. polyfile/magic_defs/qt +30 -0
  466. polyfile/magic_defs/revision +66 -0
  467. polyfile/magic_defs/riff +840 -0
  468. polyfile/magic_defs/rinex +44 -0
  469. polyfile/magic_defs/ringdove +45 -0
  470. polyfile/magic_defs/rpi +52 -0
  471. polyfile/magic_defs/rpm +45 -0
  472. polyfile/magic_defs/rpmsg +7 -0
  473. polyfile/magic_defs/rst +11 -0
  474. polyfile/magic_defs/rtf +94 -0
  475. polyfile/magic_defs/ruby +55 -0
  476. polyfile/magic_defs/rust +21 -0
  477. polyfile/magic_defs/sc +7 -0
  478. polyfile/magic_defs/sccs +24 -0
  479. polyfile/magic_defs/scientific +144 -0
  480. polyfile/magic_defs/securitycerts +6 -0
  481. polyfile/magic_defs/selinux +24 -0
  482. polyfile/magic_defs/sendmail +37 -0
  483. polyfile/magic_defs/sequent +42 -0
  484. polyfile/magic_defs/sereal +35 -0
  485. polyfile/magic_defs/sgi +144 -0
  486. polyfile/magic_defs/sgml +161 -0
  487. polyfile/magic_defs/sharc +23 -0
  488. polyfile/magic_defs/sinclair +40 -0
  489. polyfile/magic_defs/sisu +18 -0
  490. polyfile/magic_defs/sketch +6 -0
  491. polyfile/magic_defs/smalltalk +25 -0
  492. polyfile/magic_defs/smile +34 -0
  493. polyfile/magic_defs/sniffer +482 -0
  494. polyfile/magic_defs/softquad +40 -0
  495. polyfile/magic_defs/sosi +40 -0
  496. polyfile/magic_defs/spec +21 -0
  497. polyfile/magic_defs/spectrum +184 -0
  498. polyfile/magic_defs/sql +288 -0
  499. polyfile/magic_defs/ssh +39 -0
  500. polyfile/magic_defs/ssl +20 -0
  501. polyfile/magic_defs/statistics +45 -0
  502. polyfile/magic_defs/subtitle +38 -0
  503. polyfile/magic_defs/sun +141 -0
  504. polyfile/magic_defs/svf +5 -0
  505. polyfile/magic_defs/sylk +36 -0
  506. polyfile/magic_defs/symbos +42 -0
  507. polyfile/magic_defs/sysex +429 -0
  508. polyfile/magic_defs/tcl +29 -0
  509. polyfile/magic_defs/teapot +6 -0
  510. polyfile/magic_defs/terminfo +63 -0
  511. polyfile/magic_defs/tex +141 -0
  512. polyfile/magic_defs/tgif +7 -0
  513. polyfile/magic_defs/ti-8x +239 -0
  514. polyfile/magic_defs/timezone +42 -0
  515. polyfile/magic_defs/tplink +95 -0
  516. polyfile/magic_defs/troff +38 -0
  517. polyfile/magic_defs/tuxedo +8 -0
  518. polyfile/magic_defs/typeset +8 -0
  519. polyfile/magic_defs/uf2 +72 -0
  520. polyfile/magic_defs/unicode +15 -0
  521. polyfile/magic_defs/unisig +12 -0
  522. polyfile/magic_defs/unknown +34 -0
  523. polyfile/magic_defs/usd +21 -0
  524. polyfile/magic_defs/uterus +16 -0
  525. polyfile/magic_defs/uuencode +28 -0
  526. polyfile/magic_defs/vacuum-cleaner +54 -0
  527. polyfile/magic_defs/varied.out +46 -0
  528. polyfile/magic_defs/varied.script +21 -0
  529. polyfile/magic_defs/vax +32 -0
  530. polyfile/magic_defs/vicar +17 -0
  531. polyfile/magic_defs/virtual +307 -0
  532. polyfile/magic_defs/virtutech +12 -0
  533. polyfile/magic_defs/visx +32 -0
  534. polyfile/magic_defs/vms +30 -0
  535. polyfile/magic_defs/vmware +6 -0
  536. polyfile/magic_defs/vorbis +155 -0
  537. polyfile/magic_defs/vxl +14 -0
  538. polyfile/magic_defs/warc +16 -0
  539. polyfile/magic_defs/weak +16 -0
  540. polyfile/magic_defs/web +18 -0
  541. polyfile/magic_defs/webassembly +17 -0
  542. polyfile/magic_defs/windows +1811 -0
  543. polyfile/magic_defs/wireless +7 -0
  544. polyfile/magic_defs/wordprocessors +630 -0
  545. polyfile/magic_defs/wsdl +23 -0
  546. polyfile/magic_defs/x68000 +25 -0
  547. polyfile/magic_defs/xdelta +13 -0
  548. polyfile/magic_defs/xenix +106 -0
  549. polyfile/magic_defs/xilinx +58 -0
  550. polyfile/magic_defs/xo65 +37 -0
  551. polyfile/magic_defs/xwindows +43 -0
  552. polyfile/magic_defs/yara +17 -0
  553. polyfile/magic_defs/zfs +96 -0
  554. polyfile/magic_defs/zilog +12 -0
  555. polyfile/magic_defs/zip +126 -0
  556. polyfile/magic_defs/zyxel +17 -0
  557. polyfile/nes.py +144 -0
  558. polyfile/nitf.py +15 -0
  559. polyfile/pdf.py +1264 -0
  560. polyfile/pickles.py +45 -0
  561. polyfile/polyfile.py +409 -0
  562. polyfile/profiling.py +115 -0
  563. polyfile/repl.py +624 -0
  564. polyfile/search.py +310 -0
  565. polyfile/serialization.py +323 -0
  566. polyfile/structmatcher.py +46 -0
  567. polyfile/structs.py +281 -0
  568. polyfile/templates/download.js +162 -0
  569. polyfile/templates/hexdump.css +268 -0
  570. polyfile/templates/hexdump.js +756 -0
  571. polyfile/templates/jquery-3.4.1.min.js +2 -0
  572. polyfile/templates/template.html +119 -0
  573. polyfile/wildcards.py +62 -0
  574. polyfile/zipmatcher.py +183 -0
  575. polyfile_weave-0.5.5.dist-info/METADATA +173 -0
  576. polyfile_weave-0.5.5.dist-info/RECORD +585 -0
  577. polyfile_weave-0.5.5.dist-info/WHEEL +5 -0
  578. polyfile_weave-0.5.5.dist-info/entry_points.txt +2 -0
  579. polyfile_weave-0.5.5.dist-info/licenses/LICENSE +202 -0
  580. polyfile_weave-0.5.5.dist-info/top_level.txt +2 -0
  581. polymerge/__init__.py +1 -0
  582. polymerge/__main__.py +296 -0
  583. polymerge/cfg.py +127 -0
  584. polymerge/polymerge.py +227 -0
  585. polymerge/polytracker.py +190 -0
@@ -0,0 +1,4370 @@
1
+ # This is a generated file! Please edit source .ksy file and use kaitai-struct-compiler to rebuild
2
+
3
+ from pkg_resources import parse_version
4
+ import kaitaistruct
5
+ from kaitaistruct import KaitaiStruct, KaitaiStream, BytesIO
6
+ from enum import Enum
7
+ import collections
8
+
9
+
10
+ if parse_version(kaitaistruct.__version__) < parse_version('0.9'):
11
+ raise Exception("Incompatible Kaitai Struct Python API: 0.9 or later is required, but you have %s" % (kaitaistruct.__version__))
12
+
13
+ class Dicom(KaitaiStruct):
14
+ """DICOM (Digital Imaging and Communications in Medicine), AKA NEMA
15
+ PS3, AKA ISO 12052:2006, is a file format and network protocol
16
+ standard for medical imaging purposes. This parser covers file
17
+ format, typically written by various medical equipment, such as
18
+ radiography, computer tomography scans, MRT, ultrasonography, etc.
19
+
20
+ DICOM defines two transfer syntaxes: implicit and explicit. This
21
+ top-level parser attempts to autodetect and handle both of them. If
22
+ any problems arise, one can use `file_explicit` and `file_implicit`
23
+ subtypes to force parsing in particular transfer syntax.
24
+
25
+ .. seealso::
26
+ Source - https://dicom.nema.org/medical/dicom/current/output/html/part10.html#chapter_7
27
+ """
28
+
29
+ class Tags(Enum):
30
+ file_meta_information_group_length = 131072
31
+ file_meta_information_version = 131073
32
+ media_storage_sop_class_uid = 131074
33
+ media_storage_sop_instance_uid = 131075
34
+ transfer_syntax_uid = 131088
35
+ implementation_class_uid = 131090
36
+ implementation_version_name = 131091
37
+ source_application_entity_title = 131094
38
+ sending_application_entity_title = 131095
39
+ receiving_application_entity_title = 131096
40
+ private_information_creator_uid = 131328
41
+ private_information = 131330
42
+ file_set_id = 266544
43
+ file_set_descriptor_file_id = 266561
44
+ specific_character_set_of_file_set_descriptor_file = 266562
45
+ offset_of_the_first_directory_record_of_the_root_directory_entity = 266752
46
+ offset_of_the_last_directory_record_of_the_root_directory_entity = 266754
47
+ file_set_consistency_flag = 266770
48
+ directory_record_sequence = 266784
49
+ offset_of_the_next_directory_record = 267264
50
+ record_in_use_flag = 267280
51
+ offset_of_referenced_lower_level_directory_entity = 267296
52
+ directory_record_type = 267312
53
+ private_record_uid = 267314
54
+ referenced_file_id = 267520
55
+ mrdr_directory_record_offset = 267524
56
+ referenced_sop_class_uid_in_file = 267536
57
+ referenced_sop_instance_uid_in_file = 267537
58
+ referenced_transfer_syntax_uid_in_file = 267538
59
+ referenced_related_general_sop_class_uid_in_file = 267546
60
+ number_of_references = 267776
61
+ length_to_end = 524289
62
+ specific_character_set = 524293
63
+ language_code_sequence = 524294
64
+ image_type = 524296
65
+ recognition_code = 524304
66
+ instance_creation_date = 524306
67
+ instance_creation_time = 524307
68
+ instance_creator_uid = 524308
69
+ instance_coercion_datetime = 524309
70
+ sop_class_uid = 524310
71
+ sop_instance_uid = 524312
72
+ related_general_sop_class_uid = 524314
73
+ original_specialized_sop_class_uid = 524315
74
+ study_date = 524320
75
+ series_date = 524321
76
+ acquisition_date = 524322
77
+ content_date = 524323
78
+ overlay_date = 524324
79
+ curve_date = 524325
80
+ acquisition_datetime = 524330
81
+ study_time = 524336
82
+ series_time = 524337
83
+ acquisition_time = 524338
84
+ content_time = 524339
85
+ overlay_time = 524340
86
+ curve_time = 524341
87
+ data_set_type = 524352
88
+ data_set_subtype = 524353
89
+ nuclear_medicine_series_type = 524354
90
+ accession_number = 524368
91
+ issuer_of_accession_number_sequence = 524369
92
+ query_retrieve_level = 524370
93
+ query_retrieve_view = 524371
94
+ retrieve_ae_title = 524372
95
+ station_ae_title = 524373
96
+ instance_availability = 524374
97
+ failed_sop_instance_uid_list = 524376
98
+ modality = 524384
99
+ modalities_in_study = 524385
100
+ sop_classes_in_study = 524386
101
+ conversion_type = 524388
102
+ presentation_intent_type = 524392
103
+ manufacturer = 524400
104
+ institution_name = 524416
105
+ institution_address = 524417
106
+ institution_code_sequence = 524418
107
+ referring_physician_s_name = 524432
108
+ referring_physician_s_address = 524434
109
+ referring_physician_s_telephone_numbers = 524436
110
+ referring_physician_identification_sequence = 524438
111
+ consulting_physician_s_name = 524444
112
+ consulting_physician_identification_sequence = 524445
113
+ code_value = 524544
114
+ extended_code_value = 524545
115
+ coding_scheme_designator = 524546
116
+ coding_scheme_version = 524547
117
+ code_meaning = 524548
118
+ mapping_resource = 524549
119
+ context_group_version = 524550
120
+ context_group_local_version = 524551
121
+ extended_code_meaning = 524552
122
+ context_group_extension_flag = 524555
123
+ coding_scheme_uid = 524556
124
+ context_group_extension_creator_uid = 524557
125
+ context_identifier = 524559
126
+ coding_scheme_identification_sequence = 524560
127
+ coding_scheme_registry = 524562
128
+ coding_scheme_external_id = 524564
129
+ coding_scheme_name = 524565
130
+ coding_scheme_responsible_organization = 524566
131
+ context_uid = 524567
132
+ mapping_resource_uid = 524568
133
+ long_code_value = 524569
134
+ urn_code_value = 524576
135
+ equivalent_code_sequence = 524577
136
+ mapping_resource_name = 524578
137
+ context_group_identification_sequence = 524579
138
+ mapping_resource_identification_sequence = 524580
139
+ timezone_offset_from_utc = 524801
140
+ private_data_element_characteristics_sequence = 525056
141
+ private_group_reference = 525057
142
+ private_creator_reference = 525058
143
+ block_identifying_information_status = 525059
144
+ nonidentifying_private_elements = 525060
145
+ deidentification_action_sequence = 525061
146
+ identifying_private_elements = 525062
147
+ deidentification_action = 525063
148
+ network_id = 528384
149
+ station_name = 528400
150
+ study_description = 528432
151
+ procedure_code_sequence = 528434
152
+ series_description = 528446
153
+ series_description_code_sequence = 528447
154
+ institutional_department_name = 528448
155
+ physician_s__of_record = 528456
156
+ physician_s__of_record_identification_sequence = 528457
157
+ performing_physician_s_name = 528464
158
+ performing_physician_identification_sequence = 528466
159
+ name_of_physician_s__reading_study = 528480
160
+ physician_s__reading_study_identification_sequence = 528482
161
+ operators__name = 528496
162
+ operator_identification_sequence = 528498
163
+ admitting_diagnoses_description = 528512
164
+ admitting_diagnoses_code_sequence = 528516
165
+ manufacturer_s_model_name = 528528
166
+ referenced_results_sequence = 528640
167
+ referenced_study_sequence = 528656
168
+ referenced_performed_procedure_step_sequence = 528657
169
+ referenced_series_sequence = 528661
170
+ referenced_patient_sequence = 528672
171
+ referenced_visit_sequence = 528677
172
+ referenced_overlay_sequence = 528688
173
+ referenced_stereometric_instance_sequence = 528692
174
+ referenced_waveform_sequence = 528698
175
+ referenced_image_sequence = 528704
176
+ referenced_curve_sequence = 528709
177
+ referenced_instance_sequence = 528714
178
+ referenced_real_world_value_mapping_instance_sequence = 528715
179
+ referenced_sop_class_uid = 528720
180
+ referenced_sop_instance_uid = 528725
181
+ sop_classes_supported = 528730
182
+ referenced_frame_number = 528736
183
+ simple_frame_list = 528737
184
+ calculated_frame_list = 528738
185
+ time_range = 528739
186
+ frame_extraction_sequence = 528740
187
+ multi_frame_source_sop_instance_uid = 528743
188
+ retrieve_url = 528784
189
+ transaction_uid = 528789
190
+ warning_reason = 528790
191
+ failure_reason = 528791
192
+ failed_sop_sequence = 528792
193
+ referenced_sop_sequence = 528793
194
+ other_failures_sequence = 528794
195
+ studies_containing_other_referenced_instances_sequence = 528896
196
+ related_series_sequence = 528976
197
+ lossy_image_compression_retired = 532752
198
+ derivation_description = 532753
199
+ source_image_sequence = 532754
200
+ stage_name = 532768
201
+ stage_number = 532770
202
+ number_of_stages = 532772
203
+ view_name = 532775
204
+ view_number = 532776
205
+ number_of_event_timers = 532777
206
+ number_of_views_in_stage = 532778
207
+ event_elapsed_time_s_ = 532784
208
+ event_timer_name_s_ = 532786
209
+ event_timer_sequence = 532787
210
+ event_time_offset = 532788
211
+ event_code_sequence = 532789
212
+ start_trim = 532802
213
+ stop_trim = 532803
214
+ recommended_display_frame_rate = 532804
215
+ transducer_position = 532992
216
+ transducer_orientation = 532996
217
+ anatomic_structure = 533000
218
+ anatomic_region_sequence = 533016
219
+ anatomic_region_modifier_sequence = 533024
220
+ primary_anatomic_structure_sequence = 533032
221
+ anatomic_structure__space_or_region_sequence = 533033
222
+ primary_anatomic_structure_modifier_sequence = 533040
223
+ transducer_position_sequence = 533056
224
+ transducer_position_modifier_sequence = 533058
225
+ transducer_orientation_sequence = 533060
226
+ transducer_orientation_modifier_sequence = 533062
227
+ anatomic_structure_space_or_region_code_sequence__trial_ = 533073
228
+ anatomic_portal_of_entrance_code_sequence__trial_ = 533075
229
+ anatomic_approach_direction_code_sequence__trial_ = 533077
230
+ anatomic_perspective_description__trial_ = 533078
231
+ anatomic_perspective_code_sequence__trial_ = 533079
232
+ anatomic_location_of_examining_instrument_description__trial_ = 533080
233
+ anatomic_location_of_examining_instrument_code_sequence__trial_ = 533081
234
+ anatomic_structure_space_or_region_modifier_code_sequence__trial_ = 533082
235
+ on_axis_background_anatomic_structure_code_sequence__trial_ = 533084
236
+ alternate_representation_sequence = 536577
237
+ irradiation_event_uid = 536592
238
+ source_irradiation_event_sequence = 536593
239
+ radiopharmaceutical_administration_event_uid = 536594
240
+ identifying_comments = 540672
241
+ frame_type = 561159
242
+ referenced_image_evidence_sequence = 561298
243
+ referenced_raw_data_sequence = 561441
244
+ creator_version_uid = 561443
245
+ derivation_image_sequence = 561444
246
+ source_image_evidence_sequence = 561492
247
+ pixel_presentation = 561669
248
+ volumetric_properties = 561670
249
+ volume_based_calculation_technique = 561671
250
+ complex_image_component = 561672
251
+ acquisition_contrast = 561673
252
+ derivation_code_sequence = 561685
253
+ referenced_presentation_state_sequence = 561719
254
+ referenced_other_plane_sequence = 562192
255
+ frame_display_sequence = 562264
256
+ recommended_display_frame_rate_in_float = 562265
257
+ skip_frame_range_flag = 562272
258
+ patient_s_name = 1048592
259
+ patient_id = 1048608
260
+ issuer_of_patient_id = 1048609
261
+ type_of_patient_id = 1048610
262
+ issuer_of_patient_id_qualifiers_sequence = 1048612
263
+ source_patient_group_identification_sequence = 1048614
264
+ group_of_patients_identification_sequence = 1048615
265
+ subject_relative_position_in_image = 1048616
266
+ patient_s_birth_date = 1048624
267
+ patient_s_birth_time = 1048626
268
+ patient_s_birth_date_in_alternative_calendar = 1048627
269
+ patient_s_death_date_in_alternative_calendar = 1048628
270
+ patient_s_alternative_calendar = 1048629
271
+ patient_s_sex = 1048640
272
+ patient_s_insurance_plan_code_sequence = 1048656
273
+ patient_s_primary_language_code_sequence = 1048833
274
+ patient_s_primary_language_modifier_code_sequence = 1048834
275
+ quality_control_subject = 1049088
276
+ quality_control_subject_type_code_sequence = 1049089
277
+ strain_description = 1049106
278
+ strain_nomenclature = 1049107
279
+ strain_stock_number = 1049108
280
+ strain_source_registry_code_sequence = 1049109
281
+ strain_stock_sequence = 1049110
282
+ strain_source = 1049111
283
+ strain_additional_information = 1049112
284
+ strain_code_sequence = 1049113
285
+ other_patient_ids = 1052672
286
+ other_patient_names = 1052673
287
+ other_patient_ids_sequence = 1052674
288
+ patient_s_birth_name = 1052677
289
+ patient_s_age = 1052688
290
+ patient_s_size = 1052704
291
+ patient_s_size_code_sequence = 1052705
292
+ patient_s_weight = 1052720
293
+ patient_s_address = 1052736
294
+ insurance_plan_identification = 1052752
295
+ patient_s_mother_s_birth_name = 1052768
296
+ military_rank = 1052800
297
+ branch_of_service = 1052801
298
+ medical_record_locator = 1052816
299
+ referenced_patient_photo_sequence = 1052928
300
+ medical_alerts = 1056768
301
+ allergies = 1057040
302
+ country_of_residence = 1057104
303
+ region_of_residence = 1057106
304
+ patient_s_telephone_numbers = 1057108
305
+ patient_s_telecom_information = 1057109
306
+ ethnic_group = 1057120
307
+ occupation = 1057152
308
+ smoking_status = 1057184
309
+ additional_patient_history = 1057200
310
+ pregnancy_status = 1057216
311
+ last_menstrual_date = 1057232
312
+ patient_s_religious_preference = 1057264
313
+ patient_species_description = 1057281
314
+ patient_species_code_sequence = 1057282
315
+ patient_s_sex_neutered = 1057283
316
+ anatomical_orientation_type = 1057296
317
+ patient_breed_description = 1057426
318
+ patient_breed_code_sequence = 1057427
319
+ breed_registration_sequence = 1057428
320
+ breed_registration_number = 1057429
321
+ breed_registry_code_sequence = 1057430
322
+ responsible_person = 1057431
323
+ responsible_person_role = 1057432
324
+ responsible_organization = 1057433
325
+ patient_comments = 1064960
326
+ examined_body_thickness = 1086513
327
+ clinical_trial_sponsor_name = 1179664
328
+ clinical_trial_protocol_id = 1179680
329
+ clinical_trial_protocol_name = 1179681
330
+ clinical_trial_site_id = 1179696
331
+ clinical_trial_site_name = 1179697
332
+ clinical_trial_subject_id = 1179712
333
+ clinical_trial_subject_reading_id = 1179714
334
+ clinical_trial_time_point_id = 1179728
335
+ clinical_trial_time_point_description = 1179729
336
+ clinical_trial_coordinating_center_name = 1179744
337
+ patient_identity_removed = 1179746
338
+ de_identification_method = 1179747
339
+ de_identification_method_code_sequence = 1179748
340
+ clinical_trial_series_id = 1179761
341
+ clinical_trial_series_description = 1179762
342
+ clinical_trial_protocol_ethics_committee_name = 1179777
343
+ clinical_trial_protocol_ethics_committee_approval_number = 1179778
344
+ consent_for_clinical_trial_use_sequence = 1179779
345
+ distribution_type = 1179780
346
+ consent_for_distribution_flag = 1179781
347
+ cad_file_format = 1310755
348
+ component_reference_system = 1310756
349
+ component_manufacturing_procedure = 1310757
350
+ component_manufacturer = 1310760
351
+ material_thickness = 1310768
352
+ material_pipe_diameter = 1310770
353
+ material_isolation_diameter = 1310772
354
+ material_grade = 1310786
355
+ material_properties_description = 1310788
356
+ material_properties_file_format__retired_ = 1310789
357
+ material_notes = 1310790
358
+ component_shape = 1310800
359
+ curvature_type = 1310802
360
+ outer_diameter = 1310804
361
+ inner_diameter = 1310806
362
+ component_welder_ids = 1310976
363
+ secondary_approval_status = 1310977
364
+ secondary_review_date = 1310978
365
+ secondary_review_time = 1310979
366
+ secondary_reviewer_name = 1310980
367
+ repair_id = 1310981
368
+ multiple_component_approval_sequence = 1310982
369
+ other_approval_status = 1310983
370
+ other_secondary_approval_status = 1310984
371
+ actual_environmental_conditions = 1314832
372
+ expiry_date = 1314848
373
+ environmental_conditions = 1314880
374
+ evaluator_sequence = 1318914
375
+ evaluator_number = 1318916
376
+ evaluator_name = 1318918
377
+ evaluation_attempt = 1318920
378
+ indication_sequence = 1318930
379
+ indication_number = 1318932
380
+ indication_label = 1318934
381
+ indication_description = 1318936
382
+ indication_type = 1318938
383
+ indication_disposition = 1318940
384
+ indication_roi_sequence = 1318942
385
+ indication_physical_property_sequence = 1318960
386
+ property_label = 1318962
387
+ coordinate_system_number_of_axes = 1319426
388
+ coordinate_system_axes_sequence = 1319428
389
+ coordinate_system_axis_description = 1319430
390
+ coordinate_system_data_set_mapping = 1319432
391
+ coordinate_system_axis_number = 1319434
392
+ coordinate_system_axis_type = 1319436
393
+ coordinate_system_axis_units = 1319438
394
+ coordinate_system_axis_values = 1319440
395
+ coordinate_system_transform_sequence = 1319456
396
+ transform_description = 1319458
397
+ transform_number_of_axes = 1319460
398
+ transform_order_of_axes = 1319462
399
+ transformed_axis_units = 1319464
400
+ coordinate_system_transform_rotation_and_scale_matrix = 1319466
401
+ coordinate_system_transform_translation_matrix = 1319468
402
+ internal_detector_frame_time = 1323025
403
+ number_of_frames_integrated = 1323026
404
+ detector_temperature_sequence = 1323040
405
+ sensor_name = 1323042
406
+ horizontal_offset_of_sensor = 1323044
407
+ vertical_offset_of_sensor = 1323046
408
+ sensor_temperature = 1323048
409
+ dark_current_sequence = 1323072
410
+ dark_current_counts = 1323088
411
+ gain_correction_reference_sequence = 1323104
412
+ air_counts = 1323120
413
+ kv_used_in_gain_calibration = 1323121
414
+ ma_used_in_gain_calibration = 1323122
415
+ number_of_frames_used_for_integration = 1323123
416
+ filter_material_used_in_gain_calibration = 1323124
417
+ filter_thickness_used_in_gain_calibration = 1323125
418
+ date_of_gain_calibration = 1323126
419
+ time_of_gain_calibration = 1323127
420
+ bad_pixel_image = 1323136
421
+ calibration_notes = 1323161
422
+ pulser_equipment_sequence = 1327106
423
+ pulser_type = 1327108
424
+ pulser_notes = 1327110
425
+ receiver_equipment_sequence = 1327112
426
+ amplifier_type = 1327114
427
+ receiver_notes = 1327116
428
+ pre_amplifier_equipment_sequence = 1327118
429
+ pre_amplifier_notes = 1327119
430
+ transmit_transducer_sequence = 1327120
431
+ receive_transducer_sequence = 1327121
432
+ number_of_elements = 1327122
433
+ element_shape = 1327123
434
+ element_dimension_a = 1327124
435
+ element_dimension_b = 1327125
436
+ element_pitch_a = 1327126
437
+ measured_beam_dimension_a = 1327127
438
+ measured_beam_dimension_b = 1327128
439
+ location_of_measured_beam_diameter = 1327129
440
+ nominal_frequency = 1327130
441
+ measured_center_frequency = 1327131
442
+ measured_bandwidth = 1327132
443
+ element_pitch_b = 1327133
444
+ pulser_settings_sequence = 1327136
445
+ pulse_width = 1327138
446
+ excitation_frequency = 1327140
447
+ modulation_type = 1327142
448
+ damping = 1327144
449
+ receiver_settings_sequence = 1327152
450
+ acquired_soundpath_length = 1327153
451
+ acquisition_compression_type = 1327154
452
+ acquisition_sample_size = 1327155
453
+ rectifier_smoothing = 1327156
454
+ dac_sequence = 1327157
455
+ dac_type = 1327158
456
+ dac_gain_points = 1327160
457
+ dac_time_points = 1327162
458
+ dac_amplitude = 1327164
459
+ pre_amplifier_settings_sequence = 1327168
460
+ transmit_transducer_settings_sequence = 1327184
461
+ receive_transducer_settings_sequence = 1327185
462
+ incident_angle = 1327186
463
+ coupling_technique = 1327188
464
+ coupling_medium = 1327190
465
+ coupling_velocity = 1327191
466
+ probe_center_location_x = 1327192
467
+ probe_center_location_z = 1327193
468
+ sound_path_length = 1327194
469
+ delay_law_identifier = 1327196
470
+ gate_settings_sequence = 1327200
471
+ gate_threshold = 1327202
472
+ velocity_of_sound = 1327204
473
+ calibration_settings_sequence = 1327216
474
+ calibration_procedure = 1327218
475
+ procedure_version = 1327220
476
+ procedure_creation_date = 1327222
477
+ procedure_expiration_date = 1327224
478
+ procedure_last_modified_date = 1327226
479
+ calibration_time = 1327228
480
+ calibration_date = 1327230
481
+ probe_drive_equipment_sequence = 1327232
482
+ drive_type = 1327233
483
+ probe_drive_notes = 1327234
484
+ drive_probe_sequence = 1327235
485
+ probe_inductance = 1327236
486
+ probe_resistance = 1327237
487
+ receive_probe_sequence = 1327238
488
+ probe_drive_settings_sequence = 1327239
489
+ bridge_resistors = 1327240
490
+ probe_orientation_angle = 1327241
491
+ user_selected_gain_y = 1327243
492
+ user_selected_phase = 1327244
493
+ user_selected_offset_x = 1327245
494
+ user_selected_offset_y = 1327246
495
+ channel_settings_sequence = 1327249
496
+ channel_threshold = 1327250
497
+ scanner_settings_sequence = 1327258
498
+ scan_procedure = 1327259
499
+ translation_rate_x = 1327260
500
+ translation_rate_y = 1327261
501
+ channel_overlap = 1327263
502
+ image_quality_indicator_type = 1327264
503
+ image_quality_indicator_material = 1327265
504
+ image_quality_indicator_size = 1327266
505
+ linac_energy = 1331202
506
+ linac_output = 1331204
507
+ active_aperture = 1331456
508
+ total_aperture = 1331457
509
+ aperture_elevation = 1331458
510
+ main_lobe_angle = 1331459
511
+ main_roof_angle = 1331460
512
+ connector_type = 1331461
513
+ wedge_model_number = 1331462
514
+ wedge_angle_float = 1331463
515
+ wedge_roof_angle = 1331464
516
+ wedge_element_1_position = 1331465
517
+ wedge_material_velocity = 1331466
518
+ wedge_material = 1331467
519
+ wedge_offset_z = 1331468
520
+ wedge_origin_offset_x = 1331469
521
+ wedge_time_delay = 1331470
522
+ wedge_name = 1331471
523
+ wedge_manufacturer_name = 1331472
524
+ wedge_description = 1331473
525
+ nominal_beam_angle = 1331474
526
+ wedge_offset_x = 1331475
527
+ wedge_offset_y = 1331476
528
+ wedge_total_length = 1331477
529
+ wedge_in_contact_length = 1331478
530
+ wedge_front_gap = 1331479
531
+ wedge_total_height = 1331480
532
+ wedge_front_height = 1331481
533
+ wedge_rear_height = 1331482
534
+ wedge_total_width = 1331483
535
+ wedge_in_contact_width = 1331484
536
+ wedge_chamfer_height = 1331485
537
+ wedge_curve = 1331486
538
+ radius_along_the_wedge = 1331487
539
+ contrast_bolus_agent = 1572880
540
+ contrast_bolus_agent_sequence = 1572882
541
+ contrast_bolus_t1_relaxivity = 1572883
542
+ contrast_bolus_administration_route_sequence = 1572884
543
+ body_part_examined = 1572885
544
+ scanning_sequence = 1572896
545
+ sequence_variant = 1572897
546
+ scan_options = 1572898
547
+ mr_acquisition_type = 1572899
548
+ sequence_name = 1572900
549
+ angio_flag = 1572901
550
+ intervention_drug_information_sequence = 1572902
551
+ intervention_drug_stop_time = 1572903
552
+ intervention_drug_dose = 1572904
553
+ intervention_drug_code_sequence = 1572905
554
+ additional_drug_sequence = 1572906
555
+ radionuclide = 1572912
556
+ radiopharmaceutical = 1572913
557
+ energy_window_centerline = 1572914
558
+ energy_window_total_width = 1572915
559
+ intervention_drug_name = 1572916
560
+ intervention_drug_start_time = 1572917
561
+ intervention_sequence = 1572918
562
+ therapy_type = 1572919
563
+ intervention_status = 1572920
564
+ therapy_description = 1572921
565
+ intervention_description = 1572922
566
+ cine_rate = 1572928
567
+ initial_cine_run_state = 1572930
568
+ slice_thickness = 1572944
569
+ kvp = 1572960
570
+ counts_accumulated = 1572976
571
+ acquisition_termination_condition = 1572977
572
+ effective_duration = 1572978
573
+ acquisition_start_condition = 1572979
574
+ acquisition_start_condition_data = 1572980
575
+ acquisition_termination_condition_data = 1572981
576
+ repetition_time = 1572992
577
+ echo_time = 1572993
578
+ inversion_time = 1572994
579
+ number_of_averages = 1572995
580
+ imaging_frequency = 1572996
581
+ imaged_nucleus = 1572997
582
+ echo_number_s_ = 1572998
583
+ magnetic_field_strength = 1572999
584
+ spacing_between_slices = 1573000
585
+ number_of_phase_encoding_steps = 1573001
586
+ data_collection_diameter = 1573008
587
+ echo_train_length = 1573009
588
+ percent_sampling = 1573011
589
+ percent_phase_field_of_view = 1573012
590
+ pixel_bandwidth = 1573013
591
+ device_serial_number = 1576960
592
+ device_uid = 1576962
593
+ device_id = 1576963
594
+ plate_id = 1576964
595
+ generator_id = 1576965
596
+ grid_id = 1576966
597
+ cassette_id = 1576967
598
+ gantry_id = 1576968
599
+ secondary_capture_device_id = 1576976
600
+ hardcopy_creation_device_id = 1576977
601
+ date_of_secondary_capture = 1576978
602
+ time_of_secondary_capture = 1576980
603
+ secondary_capture_device_manufacturer = 1576982
604
+ hardcopy_device_manufacturer = 1576983
605
+ secondary_capture_device_manufacturer_s_model_name = 1576984
606
+ secondary_capture_device_software_versions = 1576985
607
+ hardcopy_device_software_version = 1576986
608
+ hardcopy_device_manufacturer_s_model_name = 1576987
609
+ software_version_s_ = 1576992
610
+ video_image_format_acquired = 1576994
611
+ digital_image_format_acquired = 1576995
612
+ protocol_name = 1577008
613
+ contrast_bolus_route = 1577024
614
+ contrast_bolus_volume = 1577025
615
+ contrast_bolus_start_time = 1577026
616
+ contrast_bolus_stop_time = 1577027
617
+ contrast_bolus_total_dose = 1577028
618
+ syringe_counts = 1577029
619
+ contrast_flow_rate = 1577030
620
+ contrast_flow_duration = 1577031
621
+ contrast_bolus_ingredient = 1577032
622
+ contrast_bolus_ingredient_concentration = 1577033
623
+ spatial_resolution = 1577040
624
+ trigger_time = 1577056
625
+ trigger_source_or_type = 1577057
626
+ nominal_interval = 1577058
627
+ frame_time = 1577059
628
+ cardiac_framing_type = 1577060
629
+ frame_time_vector = 1577061
630
+ frame_delay = 1577062
631
+ image_trigger_delay = 1577063
632
+ multiplex_group_time_offset = 1577064
633
+ trigger_time_offset = 1577065
634
+ synchronization_trigger = 1577066
635
+ synchronization_channel = 1577068
636
+ trigger_sample_position = 1577070
637
+ radiopharmaceutical_route = 1577072
638
+ radiopharmaceutical_volume = 1577073
639
+ radiopharmaceutical_start_time = 1577074
640
+ radiopharmaceutical_stop_time = 1577075
641
+ radionuclide_total_dose = 1577076
642
+ radionuclide_half_life = 1577077
643
+ radionuclide_positron_fraction = 1577078
644
+ radiopharmaceutical_specific_activity = 1577079
645
+ radiopharmaceutical_start_datetime = 1577080
646
+ radiopharmaceutical_stop_datetime = 1577081
647
+ beat_rejection_flag = 1577088
648
+ low_r_r_value = 1577089
649
+ high_r_r_value = 1577090
650
+ intervals_acquired = 1577091
651
+ intervals_rejected = 1577092
652
+ pvc_rejection = 1577093
653
+ skip_beats = 1577094
654
+ heart_rate = 1577096
655
+ cardiac_number_of_images = 1577104
656
+ trigger_window = 1577108
657
+ reconstruction_diameter = 1577216
658
+ distance_source_to_detector = 1577232
659
+ distance_source_to_patient = 1577233
660
+ estimated_radiographic_magnification_factor = 1577236
661
+ gantry_detector_tilt = 1577248
662
+ gantry_detector_slew = 1577249
663
+ table_height = 1577264
664
+ table_traverse = 1577265
665
+ table_motion = 1577268
666
+ table_vertical_increment = 1577269
667
+ table_lateral_increment = 1577270
668
+ table_longitudinal_increment = 1577271
669
+ table_angle = 1577272
670
+ table_type = 1577274
671
+ rotation_direction = 1577280
672
+ angular_position = 1577281
673
+ radial_position = 1577282
674
+ scan_arc = 1577283
675
+ angular_step = 1577284
676
+ center_of_rotation_offset = 1577285
677
+ rotation_offset = 1577286
678
+ field_of_view_shape = 1577287
679
+ field_of_view_dimension_s_ = 1577289
680
+ exposure_time = 1577296
681
+ x_ray_tube_current = 1577297
682
+ exposure = 1577298
683
+ exposure_in__as = 1577299
684
+ average_pulse_width = 1577300
685
+ radiation_setting = 1577301
686
+ rectification_type = 1577302
687
+ radiation_mode = 1577306
688
+ image_and_fluoroscopy_area_dose_product = 1577310
689
+ filter_type = 1577312
690
+ type_of_filters = 1577313
691
+ intensifier_size = 1577314
692
+ imager_pixel_spacing = 1577316
693
+ grid = 1577318
694
+ generator_power = 1577328
695
+ collimator_grid_name = 1577344
696
+ collimator_type = 1577345
697
+ focal_distance = 1577346
698
+ x_focus_center = 1577347
699
+ y_focus_center = 1577348
700
+ focal_spot_s_ = 1577360
701
+ anode_target_material = 1577361
702
+ body_part_thickness = 1577376
703
+ compression_force = 1577378
704
+ paddle_description = 1577380
705
+ date_of_last_calibration = 1577472
706
+ time_of_last_calibration = 1577473
707
+ datetime_of_last_calibration = 1577474
708
+ convolution_kernel = 1577488
709
+ upper_lower_pixel_values = 1577536
710
+ actual_frame_duration = 1577538
711
+ count_rate = 1577539
712
+ preferred_playback_sequencing = 1577540
713
+ receive_coil_name = 1577552
714
+ transmit_coil_name = 1577553
715
+ plate_type = 1577568
716
+ phosphor_type = 1577569
717
+ water_equivalent_diameter = 1577585
718
+ water_equivalent_diameter_calculation_method_code_sequence = 1577586
719
+ scan_velocity = 1577728
720
+ whole_body_technique = 1577729
721
+ scan_length = 1577730
722
+ acquisition_matrix = 1577744
723
+ in_plane_phase_encoding_direction = 1577746
724
+ flip_angle = 1577748
725
+ variable_flip_angle_flag = 1577749
726
+ sar = 1577750
727
+ db_dt = 1577752
728
+ b1rms = 1577760
729
+ acquisition_device_processing_description = 1577984
730
+ acquisition_device_processing_code = 1577985
731
+ cassette_orientation = 1577986
732
+ cassette_size = 1577987
733
+ exposures_on_plate = 1577988
734
+ relative_x_ray_exposure = 1577989
735
+ exposure_index = 1578001
736
+ target_exposure_index = 1578002
737
+ deviation_index = 1578003
738
+ column_angulation = 1578064
739
+ tomo_layer_height = 1578080
740
+ tomo_angle = 1578096
741
+ tomo_time = 1578112
742
+ tomo_type = 1578128
743
+ tomo_class = 1578129
744
+ number_of_tomosynthesis_source_images = 1578133
745
+ positioner_motion = 1578240
746
+ positioner_type = 1578248
747
+ positioner_primary_angle = 1578256
748
+ positioner_secondary_angle = 1578257
749
+ positioner_primary_angle_increment = 1578272
750
+ positioner_secondary_angle_increment = 1578273
751
+ detector_primary_angle = 1578288
752
+ detector_secondary_angle = 1578289
753
+ shutter_shape = 1578496
754
+ shutter_left_vertical_edge = 1578498
755
+ shutter_right_vertical_edge = 1578500
756
+ shutter_upper_horizontal_edge = 1578502
757
+ shutter_lower_horizontal_edge = 1578504
758
+ center_of_circular_shutter = 1578512
759
+ radius_of_circular_shutter = 1578514
760
+ vertices_of_the_polygonal_shutter = 1578528
761
+ shutter_presentation_value = 1578530
762
+ shutter_overlay_group = 1578531
763
+ shutter_presentation_color_cielab_value = 1578532
764
+ collimator_shape = 1578752
765
+ collimator_left_vertical_edge = 1578754
766
+ collimator_right_vertical_edge = 1578756
767
+ collimator_upper_horizontal_edge = 1578758
768
+ collimator_lower_horizontal_edge = 1578760
769
+ center_of_circular_collimator = 1578768
770
+ radius_of_circular_collimator = 1578770
771
+ vertices_of_the_polygonal_collimator = 1578784
772
+ acquisition_time_synchronized = 1579008
773
+ time_source = 1579009
774
+ time_distribution_protocol = 1579010
775
+ ntp_source_address = 1579011
776
+ page_number_vector = 1581057
777
+ frame_label_vector = 1581058
778
+ frame_primary_angle_vector = 1581059
779
+ frame_secondary_angle_vector = 1581060
780
+ slice_location_vector = 1581061
781
+ display_window_label_vector = 1581062
782
+ nominal_scanned_pixel_spacing = 1581072
783
+ digitizing_device_transport_direction = 1581088
784
+ rotation_of_scanned_film = 1581104
785
+ biopsy_target_sequence = 1581121
786
+ target_uid = 1581122
787
+ localizing_cursor_position = 1581123
788
+ calculated_target_position = 1581124
789
+ target_label = 1581125
790
+ displayed_z_value = 1581126
791
+ ivus_acquisition = 1585408
792
+ ivus_pullback_rate = 1585409
793
+ ivus_gated_rate = 1585410
794
+ ivus_pullback_start_frame_number = 1585411
795
+ ivus_pullback_stop_frame_number = 1585412
796
+ lesion_number = 1585413
797
+ acquisition_comments = 1589248
798
+ output_power = 1593344
799
+ transducer_data = 1593360
800
+ focus_depth = 1593362
801
+ processing_function = 1593376
802
+ postprocessing_function = 1593377
803
+ mechanical_index = 1593378
804
+ bone_thermal_index = 1593380
805
+ cranial_thermal_index = 1593382
806
+ soft_tissue_thermal_index = 1593383
807
+ soft_tissue_focus_thermal_index = 1593384
808
+ soft_tissue_surface_thermal_index = 1593385
809
+ dynamic_range = 1593392
810
+ total_gain = 1593408
811
+ depth_of_scan_field = 1593424
812
+ patient_position = 1593600
813
+ view_position = 1593601
814
+ projection_eponymous_name_code_sequence = 1593604
815
+ image_transformation_matrix = 1593872
816
+ image_translation_vector = 1593874
817
+ sensitivity = 1597440
818
+ sequence_of_ultrasound_regions = 1597457
819
+ region_spatial_format = 1597458
820
+ region_data_type = 1597460
821
+ region_flags = 1597462
822
+ region_location_min_x0 = 1597464
823
+ region_location_min_y0 = 1597466
824
+ region_location_max_x1 = 1597468
825
+ region_location_max_y1 = 1597470
826
+ reference_pixel_x0 = 1597472
827
+ reference_pixel_y0 = 1597474
828
+ physical_units_x_direction = 1597476
829
+ physical_units_y_direction = 1597478
830
+ reference_pixel_physical_value_x = 1597480
831
+ reference_pixel_physical_value_y = 1597482
832
+ physical_delta_x = 1597484
833
+ physical_delta_y = 1597486
834
+ transducer_frequency = 1597488
835
+ transducer_type = 1597489
836
+ pulse_repetition_frequency = 1597490
837
+ doppler_correction_angle = 1597492
838
+ steering_angle = 1597494
839
+ doppler_sample_volume_x_position__retired_ = 1597496
840
+ doppler_sample_volume_x_position = 1597497
841
+ doppler_sample_volume_y_position__retired_ = 1597498
842
+ doppler_sample_volume_y_position = 1597499
843
+ tm_line_position_x0__retired_ = 1597500
844
+ tm_line_position_x0 = 1597501
845
+ tm_line_position_y0__retired_ = 1597502
846
+ tm_line_position_y0 = 1597503
847
+ tm_line_position_x1__retired_ = 1597504
848
+ tm_line_position_x1 = 1597505
849
+ tm_line_position_y1__retired_ = 1597506
850
+ tm_line_position_y1 = 1597507
851
+ pixel_component_organization = 1597508
852
+ pixel_component_mask = 1597510
853
+ pixel_component_range_start = 1597512
854
+ pixel_component_range_stop = 1597514
855
+ pixel_component_physical_units = 1597516
856
+ pixel_component_data_type = 1597518
857
+ number_of_table_break_points = 1597520
858
+ table_of_x_break_points = 1597522
859
+ table_of_y_break_points = 1597524
860
+ number_of_table_entries = 1597526
861
+ table_of_pixel_values = 1597528
862
+ table_of_parameter_values = 1597530
863
+ r_wave_time_vector = 1597536
864
+ detector_conditions_nominal_flag = 1601536
865
+ detector_temperature = 1601537
866
+ detector_type = 1601540
867
+ detector_configuration = 1601541
868
+ detector_description = 1601542
869
+ detector_mode = 1601544
870
+ detector_id = 1601546
871
+ date_of_last_detector_calibration = 1601548
872
+ time_of_last_detector_calibration = 1601550
873
+ exposures_on_detector_since_last_calibration = 1601552
874
+ exposures_on_detector_since_manufactured = 1601553
875
+ detector_time_since_last_exposure = 1601554
876
+ detector_active_time = 1601556
877
+ detector_activation_offset_from_exposure = 1601558
878
+ detector_binning = 1601562
879
+ detector_element_physical_size = 1601568
880
+ detector_element_spacing = 1601570
881
+ detector_active_shape = 1601572
882
+ detector_active_dimension_s_ = 1601574
883
+ detector_active_origin = 1601576
884
+ detector_manufacturer_name = 1601578
885
+ detector_manufacturer_s_model_name = 1601579
886
+ field_of_view_origin = 1601584
887
+ field_of_view_rotation = 1601586
888
+ field_of_view_horizontal_flip = 1601588
889
+ pixel_data_area_origin_relative_to_fov = 1601590
890
+ pixel_data_area_rotation_angle_relative_to_fov = 1601592
891
+ grid_absorbing_material = 1601600
892
+ grid_spacing_material = 1601601
893
+ grid_thickness = 1601602
894
+ grid_pitch = 1601604
895
+ grid_aspect_ratio = 1601606
896
+ grid_period = 1601608
897
+ grid_focal_distance = 1601612
898
+ filter_material = 1601616
899
+ filter_thickness_minimum = 1601618
900
+ filter_thickness_maximum = 1601620
901
+ filter_beam_path_length_minimum = 1601622
902
+ filter_beam_path_length_maximum = 1601624
903
+ exposure_control_mode = 1601632
904
+ exposure_control_mode_description = 1601634
905
+ exposure_status = 1601636
906
+ phototimer_setting = 1601637
907
+ exposure_time_in__s = 1605968
908
+ x_ray_tube_current_in__a = 1605969
909
+ content_qualification = 1609732
910
+ pulse_sequence_name = 1609733
911
+ mr_imaging_modifier_sequence = 1609734
912
+ echo_pulse_sequence = 1609736
913
+ inversion_recovery = 1609737
914
+ flow_compensation = 1609744
915
+ multiple_spin_echo = 1609745
916
+ multi_planar_excitation = 1609746
917
+ phase_contrast = 1609748
918
+ time_of_flight_contrast = 1609749
919
+ spoiling = 1609750
920
+ steady_state_pulse_sequence = 1609751
921
+ echo_planar_pulse_sequence = 1609752
922
+ tag_angle_first_axis = 1609753
923
+ magnetization_transfer = 1609760
924
+ t2_preparation = 1609761
925
+ blood_signal_nulling = 1609762
926
+ saturation_recovery = 1609764
927
+ spectrally_selected_suppression = 1609765
928
+ spectrally_selected_excitation = 1609766
929
+ spatial_pre_saturation = 1609767
930
+ tagging = 1609768
931
+ oversampling_phase = 1609769
932
+ tag_spacing_first_dimension = 1609776
933
+ geometry_of_k_space_traversal = 1609778
934
+ segmented_k_space_traversal = 1609779
935
+ rectilinear_phase_encode_reordering = 1609780
936
+ tag_thickness = 1609781
937
+ partial_fourier_direction = 1609782
938
+ cardiac_synchronization_technique = 1609783
939
+ receive_coil_manufacturer_name = 1609793
940
+ mr_receive_coil_sequence = 1609794
941
+ receive_coil_type = 1609795
942
+ quadrature_receive_coil = 1609796
943
+ multi_coil_definition_sequence = 1609797
944
+ multi_coil_configuration = 1609798
945
+ multi_coil_element_name = 1609799
946
+ multi_coil_element_used = 1609800
947
+ mr_transmit_coil_sequence = 1609801
948
+ transmit_coil_manufacturer_name = 1609808
949
+ transmit_coil_type = 1609809
950
+ spectral_width = 1609810
951
+ chemical_shift_reference = 1609811
952
+ volume_localization_technique = 1609812
953
+ mr_acquisition_frequency_encoding_steps = 1609816
954
+ de_coupling = 1609817
955
+ de_coupled_nucleus = 1609824
956
+ de_coupling_frequency = 1609825
957
+ de_coupling_method = 1609826
958
+ de_coupling_chemical_shift_reference = 1609827
959
+ k_space_filtering = 1609828
960
+ time_domain_filtering = 1609829
961
+ number_of_zero_fills = 1609830
962
+ baseline_correction = 1609831
963
+ parallel_reduction_factor_in_plane = 1609833
964
+ cardiac_r_r_interval_specified = 1609840
965
+ acquisition_duration = 1609843
966
+ frame_acquisition_datetime = 1609844
967
+ diffusion_directionality = 1609845
968
+ diffusion_gradient_direction_sequence = 1609846
969
+ parallel_acquisition = 1609847
970
+ parallel_acquisition_technique = 1609848
971
+ inversion_times = 1609849
972
+ metabolite_map_description = 1609856
973
+ partial_fourier = 1609857
974
+ effective_echo_time = 1609858
975
+ metabolite_map_code_sequence = 1609859
976
+ chemical_shift_sequence = 1609860
977
+ cardiac_signal_source = 1609861
978
+ diffusion_b_value = 1609863
979
+ diffusion_gradient_orientation = 1609865
980
+ velocity_encoding_direction = 1609872
981
+ velocity_encoding_minimum_value = 1609873
982
+ velocity_encoding_acquisition_sequence = 1609874
983
+ number_of_k_space_trajectories = 1609875
984
+ coverage_of_k_space = 1609876
985
+ spectroscopy_acquisition_phase_rows = 1609877
986
+ parallel_reduction_factor_in_plane__retired_ = 1609878
987
+ transmitter_frequency = 1609880
988
+ resonant_nucleus = 1609984
989
+ frequency_correction = 1609985
990
+ mr_spectroscopy_fov_geometry_sequence = 1609987
991
+ slab_thickness = 1609988
992
+ slab_orientation = 1609989
993
+ mid_slab_position = 1609990
994
+ mr_spatial_saturation_sequence = 1609991
995
+ mr_timing_and_related_parameters_sequence = 1610002
996
+ mr_echo_sequence = 1610004
997
+ mr_modifier_sequence = 1610005
998
+ mr_diffusion_sequence = 1610007
999
+ cardiac_synchronization_sequence = 1610008
1000
+ mr_averages_sequence = 1610009
1001
+ mr_fov_geometry_sequence = 1610021
1002
+ volume_localization_sequence = 1610022
1003
+ spectroscopy_acquisition_data_columns = 1610023
1004
+ diffusion_anisotropy_type = 1610055
1005
+ frame_reference_datetime = 1610065
1006
+ mr_metabolite_map_sequence = 1610066
1007
+ parallel_reduction_factor_out_of_plane = 1610069
1008
+ spectroscopy_acquisition_out_of_plane_phase_steps = 1610073
1009
+ bulk_motion_status = 1610086
1010
+ parallel_reduction_factor_second_in_plane = 1610088
1011
+ cardiac_beat_rejection_technique = 1610089
1012
+ respiratory_motion_compensation_technique = 1610096
1013
+ respiratory_signal_source = 1610097
1014
+ bulk_motion_compensation_technique = 1610098
1015
+ bulk_motion_signal_source = 1610099
1016
+ applicable_safety_standard_agency = 1610100
1017
+ applicable_safety_standard_description = 1610101
1018
+ operating_mode_sequence = 1610102
1019
+ operating_mode_type = 1610103
1020
+ operating_mode = 1610104
1021
+ specific_absorption_rate_definition = 1610105
1022
+ gradient_output_type = 1610112
1023
+ specific_absorption_rate_value = 1610113
1024
+ gradient_output = 1610114
1025
+ flow_compensation_direction = 1610115
1026
+ tagging_delay = 1610116
1027
+ respiratory_motion_compensation_technique_description = 1610117
1028
+ respiratory_signal_source_id = 1610118
1029
+ chemical_shift_minimum_integration_limit_in_hz = 1610133
1030
+ chemical_shift_maximum_integration_limit_in_hz = 1610134
1031
+ mr_velocity_encoding_sequence = 1610135
1032
+ first_order_phase_correction = 1610136
1033
+ water_referenced_phase_correction = 1610137
1034
+ mr_spectroscopy_acquisition_type = 1610240
1035
+ respiratory_cycle_position = 1610260
1036
+ velocity_encoding_maximum_value = 1610263
1037
+ tag_spacing_second_dimension = 1610264
1038
+ tag_angle_second_axis = 1610265
1039
+ frame_acquisition_duration = 1610272
1040
+ mr_image_frame_type_sequence = 1610278
1041
+ mr_spectroscopy_frame_type_sequence = 1610279
1042
+ mr_acquisition_phase_encoding_steps_in_plane = 1610289
1043
+ mr_acquisition_phase_encoding_steps_out_of_plane = 1610290
1044
+ spectroscopy_acquisition_phase_columns = 1610292
1045
+ cardiac_cycle_position = 1610294
1046
+ specific_absorption_rate_sequence = 1610297
1047
+ rf_echo_train_length = 1610304
1048
+ gradient_echo_train_length = 1610305
1049
+ arterial_spin_labeling_contrast = 1610320
1050
+ mr_arterial_spin_labeling_sequence = 1610321
1051
+ asl_technique_description = 1610322
1052
+ asl_slab_number = 1610323
1053
+ asl_slab_thickness = 1610324
1054
+ asl_slab_orientation = 1610325
1055
+ asl_mid_slab_position = 1610326
1056
+ asl_context = 1610327
1057
+ asl_pulse_train_duration = 1610328
1058
+ asl_crusher_flag = 1610329
1059
+ asl_crusher_flow_limit = 1610330
1060
+ asl_crusher_description = 1610331
1061
+ asl_bolus_cut_off_flag = 1610332
1062
+ asl_bolus_cut_off_timing_sequence = 1610333
1063
+ asl_bolus_cut_off_technique = 1610334
1064
+ asl_bolus_cut_off_delay_time = 1610335
1065
+ asl_slab_sequence = 1610336
1066
+ chemical_shift_minimum_integration_limit_in_ppm = 1610389
1067
+ chemical_shift_maximum_integration_limit_in_ppm = 1610390
1068
+ water_reference_acquisition = 1610391
1069
+ echo_peak_position = 1610392
1070
+ ct_acquisition_type_sequence = 1610497
1071
+ acquisition_type = 1610498
1072
+ tube_angle = 1610499
1073
+ ct_acquisition_details_sequence = 1610500
1074
+ revolution_time = 1610501
1075
+ single_collimation_width = 1610502
1076
+ total_collimation_width = 1610503
1077
+ ct_table_dynamics_sequence = 1610504
1078
+ table_speed = 1610505
1079
+ table_feed_per_rotation = 1610512
1080
+ spiral_pitch_factor = 1610513
1081
+ ct_geometry_sequence = 1610514
1082
+ data_collection_center__patient_ = 1610515
1083
+ ct_reconstruction_sequence = 1610516
1084
+ reconstruction_algorithm = 1610517
1085
+ convolution_kernel_group = 1610518
1086
+ reconstruction_field_of_view = 1610519
1087
+ reconstruction_target_center__patient_ = 1610520
1088
+ reconstruction_angle = 1610521
1089
+ image_filter = 1610528
1090
+ ct_exposure_sequence = 1610529
1091
+ reconstruction_pixel_spacing = 1610530
1092
+ exposure_modulation_type = 1610531
1093
+ estimated_dose_saving = 1610532
1094
+ ct_x_ray_details_sequence = 1610533
1095
+ ct_position_sequence = 1610534
1096
+ table_position = 1610535
1097
+ exposure_time_in_ms = 1610536
1098
+ ct_image_frame_type_sequence = 1610537
1099
+ x_ray_tube_current_in_ma = 1610544
1100
+ exposure_in_mas = 1610546
1101
+ constant_volume_flag = 1610547
1102
+ fluoroscopy_flag = 1610548
1103
+ distance_source_to_data_collection_center = 1610549
1104
+ contrast_bolus_agent_number = 1610551
1105
+ contrast_bolus_ingredient_code_sequence = 1610552
1106
+ contrast_administration_profile_sequence = 1610560
1107
+ contrast_bolus_usage_sequence = 1610561
1108
+ contrast_bolus_agent_administered = 1610562
1109
+ contrast_bolus_agent_detected = 1610563
1110
+ contrast_bolus_agent_phase = 1610564
1111
+ ctdivol = 1610565
1112
+ ctdi_phantom_type_code_sequence = 1610566
1113
+ calcium_scoring_mass_factor_patient = 1610577
1114
+ calcium_scoring_mass_factor_device = 1610578
1115
+ energy_weighting_factor = 1610579
1116
+ ct_additional_x_ray_source_sequence = 1610592
1117
+ projection_pixel_calibration_sequence = 1610753
1118
+ distance_source_to_isocenter = 1610754
1119
+ distance_object_to_table_top = 1610755
1120
+ object_pixel_spacing_in_center_of_beam = 1610756
1121
+ positioner_position_sequence = 1610757
1122
+ table_position_sequence = 1610758
1123
+ collimator_shape_sequence = 1610759
1124
+ planes_in_acquisition = 1610768
1125
+ xa_xrf_frame_characteristics_sequence = 1610770
1126
+ frame_acquisition_sequence = 1610775
1127
+ x_ray_receptor_type = 1610784
1128
+ acquisition_protocol_name = 1610787
1129
+ acquisition_protocol_description = 1610788
1130
+ contrast_bolus_ingredient_opaque = 1610789
1131
+ distance_receptor_plane_to_detector_housing = 1610790
1132
+ intensifier_active_shape = 1610791
1133
+ intensifier_active_dimension_s_ = 1610792
1134
+ physical_detector_size = 1610793
1135
+ position_of_isocenter_projection = 1610800
1136
+ field_of_view_sequence = 1610802
1137
+ field_of_view_description = 1610803
1138
+ exposure_control_sensing_regions_sequence = 1610804
1139
+ exposure_control_sensing_region_shape = 1610805
1140
+ exposure_control_sensing_region_left_vertical_edge = 1610806
1141
+ exposure_control_sensing_region_right_vertical_edge = 1610807
1142
+ exposure_control_sensing_region_upper_horizontal_edge = 1610808
1143
+ exposure_control_sensing_region_lower_horizontal_edge = 1610809
1144
+ center_of_circular_exposure_control_sensing_region = 1610816
1145
+ radius_of_circular_exposure_control_sensing_region = 1610817
1146
+ vertices_of_the_polygonal_exposure_control_sensing_region = 1610818
1147
+ column_angulation__patient_ = 1610823
1148
+ beam_angle = 1610825
1149
+ frame_detector_parameters_sequence = 1610833
1150
+ calculated_anatomy_thickness = 1610834
1151
+ calibration_sequence = 1610837
1152
+ object_thickness_sequence = 1610838
1153
+ plane_identification = 1610839
1154
+ field_of_view_dimension_s__in_float = 1610849
1155
+ isocenter_reference_system_sequence = 1610850
1156
+ positioner_isocenter_primary_angle = 1610851
1157
+ positioner_isocenter_secondary_angle = 1610852
1158
+ positioner_isocenter_detector_rotation_angle = 1610853
1159
+ table_x_position_to_isocenter = 1610854
1160
+ table_y_position_to_isocenter = 1610855
1161
+ table_z_position_to_isocenter = 1610856
1162
+ table_horizontal_rotation_angle = 1610857
1163
+ table_head_tilt_angle = 1610864
1164
+ table_cradle_tilt_angle = 1610865
1165
+ frame_display_shutter_sequence = 1610866
1166
+ acquired_image_area_dose_product = 1610867
1167
+ c_arm_positioner_tabletop_relationship = 1610868
1168
+ x_ray_geometry_sequence = 1610870
1169
+ irradiation_event_identification_sequence = 1610871
1170
+ x_ray_3d_frame_type_sequence = 1611012
1171
+ contributing_sources_sequence = 1611014
1172
+ x_ray_3d_acquisition_sequence = 1611015
1173
+ primary_positioner_scan_arc = 1611016
1174
+ secondary_positioner_scan_arc = 1611017
1175
+ primary_positioner_scan_start_angle = 1611024
1176
+ secondary_positioner_scan_start_angle = 1611025
1177
+ primary_positioner_increment = 1611028
1178
+ secondary_positioner_increment = 1611029
1179
+ start_acquisition_datetime = 1611030
1180
+ end_acquisition_datetime = 1611031
1181
+ primary_positioner_increment_sign = 1611032
1182
+ secondary_positioner_increment_sign = 1611033
1183
+ application_name = 1611044
1184
+ application_version = 1611045
1185
+ application_manufacturer = 1611046
1186
+ algorithm_type = 1611047
1187
+ algorithm_description = 1611048
1188
+ x_ray_3d_reconstruction_sequence = 1611056
1189
+ reconstruction_description = 1611057
1190
+ per_projection_acquisition_sequence = 1611064
1191
+ detector_position_sequence = 1611073
1192
+ x_ray_acquisition_dose_sequence = 1611074
1193
+ x_ray_source_isocenter_primary_angle = 1611075
1194
+ x_ray_source_isocenter_secondary_angle = 1611076
1195
+ breast_support_isocenter_primary_angle = 1611077
1196
+ breast_support_isocenter_secondary_angle = 1611078
1197
+ breast_support_x_position_to_isocenter = 1611079
1198
+ breast_support_y_position_to_isocenter = 1611080
1199
+ breast_support_z_position_to_isocenter = 1611081
1200
+ detector_isocenter_primary_angle = 1611088
1201
+ detector_isocenter_secondary_angle = 1611089
1202
+ detector_x_position_to_isocenter = 1611090
1203
+ detector_y_position_to_isocenter = 1611091
1204
+ detector_z_position_to_isocenter = 1611092
1205
+ x_ray_grid_sequence = 1611093
1206
+ x_ray_filter_sequence = 1611094
1207
+ detector_active_area_tlhc_position = 1611095
1208
+ detector_active_area_orientation = 1611096
1209
+ positioner_primary_angle_direction = 1611097
1210
+ diffusion_b_matrix_sequence = 1611265
1211
+ diffusion_b_value_xx = 1611266
1212
+ diffusion_b_value_xy = 1611267
1213
+ diffusion_b_value_xz = 1611268
1214
+ diffusion_b_value_yy = 1611269
1215
+ diffusion_b_value_yz = 1611270
1216
+ diffusion_b_value_zz = 1611271
1217
+ functional_mr_sequence = 1611297
1218
+ functional_settling_phase_frames_present = 1611298
1219
+ functional_sync_pulse = 1611299
1220
+ settling_phase_frame = 1611300
1221
+ decay_correction_datetime = 1611521
1222
+ start_density_threshold = 1611541
1223
+ start_relative_density_difference_threshold = 1611542
1224
+ start_cardiac_trigger_count_threshold = 1611543
1225
+ start_respiratory_trigger_count_threshold = 1611544
1226
+ termination_counts_threshold = 1611545
1227
+ termination_density_threshold = 1611552
1228
+ termination_relative_density_threshold = 1611553
1229
+ termination_time_threshold = 1611554
1230
+ termination_cardiac_trigger_count_threshold = 1611555
1231
+ termination_respiratory_trigger_count_threshold = 1611556
1232
+ detector_geometry = 1611557
1233
+ transverse_detector_separation = 1611558
1234
+ axial_detector_dimension = 1611559
1235
+ radiopharmaceutical_agent_number = 1611561
1236
+ pet_frame_acquisition_sequence = 1611570
1237
+ pet_detector_motion_details_sequence = 1611571
1238
+ pet_table_dynamics_sequence = 1611572
1239
+ pet_position_sequence = 1611573
1240
+ pet_frame_correction_factors_sequence = 1611574
1241
+ radiopharmaceutical_usage_sequence = 1611575
1242
+ attenuation_correction_source = 1611576
1243
+ number_of_iterations = 1611577
1244
+ number_of_subsets = 1611584
1245
+ pet_reconstruction_sequence = 1611593
1246
+ pet_frame_type_sequence = 1611601
1247
+ time_of_flight_information_used = 1611605
1248
+ reconstruction_type = 1611606
1249
+ decay_corrected = 1611608
1250
+ attenuation_corrected = 1611609
1251
+ scatter_corrected = 1611616
1252
+ dead_time_corrected = 1611617
1253
+ gantry_motion_corrected = 1611618
1254
+ patient_motion_corrected = 1611619
1255
+ count_loss_normalization_corrected = 1611620
1256
+ randoms_corrected = 1611621
1257
+ non_uniform_radial_sampling_corrected = 1611622
1258
+ sensitivity_calibrated = 1611623
1259
+ detector_normalization_correction = 1611624
1260
+ iterative_reconstruction_method = 1611625
1261
+ attenuation_correction_temporal_relationship = 1611632
1262
+ patient_physiological_state_sequence = 1611633
1263
+ patient_physiological_state_code_sequence = 1611634
1264
+ depth_s__of_focus = 1611777
1265
+ excluded_intervals_sequence = 1611779
1266
+ exclusion_start_datetime = 1611780
1267
+ exclusion_duration = 1611781
1268
+ us_image_description_sequence = 1611782
1269
+ image_data_type_sequence = 1611783
1270
+ data_type = 1611784
1271
+ transducer_scan_pattern_code_sequence = 1611785
1272
+ aliased_data_type = 1611787
1273
+ position_measuring_device_used = 1611788
1274
+ transducer_geometry_code_sequence = 1611789
1275
+ transducer_beam_steering_code_sequence = 1611790
1276
+ transducer_application_code_sequence = 1611791
1277
+ zero_velocity_pixel_value = 1611792
1278
+ contributing_equipment_sequence = 1613825
1279
+ contribution_datetime = 1613826
1280
+ contribution_description = 1613827
1281
+ study_instance_uid = 2097165
1282
+ series_instance_uid = 2097166
1283
+ study_id = 2097168
1284
+ series_number = 2097169
1285
+ acquisition_number = 2097170
1286
+ instance_number = 2097171
1287
+ isotope_number = 2097172
1288
+ phase_number = 2097173
1289
+ interval_number = 2097174
1290
+ time_slot_number = 2097175
1291
+ angle_number = 2097176
1292
+ item_number = 2097177
1293
+ patient_orientation = 2097184
1294
+ overlay_number = 2097186
1295
+ curve_number = 2097188
1296
+ lut_number = 2097190
1297
+ image_position = 2097200
1298
+ image_position__patient_ = 2097202
1299
+ image_orientation = 2097205
1300
+ image_orientation__patient_ = 2097207
1301
+ location = 2097232
1302
+ frame_of_reference_uid = 2097234
1303
+ laterality = 2097248
1304
+ image_laterality = 2097250
1305
+ image_geometry_type = 2097264
1306
+ masking_image = 2097280
1307
+ report_number = 2097322
1308
+ temporal_position_identifier = 2097408
1309
+ number_of_temporal_positions = 2097413
1310
+ temporal_resolution = 2097424
1311
+ synchronization_frame_of_reference_uid = 2097664
1312
+ sop_instance_uid_of_concatenation_source = 2097730
1313
+ series_in_study = 2101248
1314
+ acquisitions_in_series = 2101249
1315
+ images_in_acquisition = 2101250
1316
+ images_in_series = 2101251
1317
+ acquisitions_in_study = 2101252
1318
+ images_in_study = 2101253
1319
+ reference = 2101280
1320
+ position_reference_indicator = 2101312
1321
+ slice_location = 2101313
1322
+ other_study_numbers = 2101360
1323
+ number_of_patient_related_studies = 2101760
1324
+ number_of_patient_related_series = 2101762
1325
+ number_of_patient_related_instances = 2101764
1326
+ number_of_study_related_series = 2101766
1327
+ number_of_study_related_instances = 2101768
1328
+ number_of_series_related_instances = 2101769
1329
+ modifying_device_id = 2110465
1330
+ modified_image_id = 2110466
1331
+ modified_image_date = 2110467
1332
+ modifying_device_manufacturer = 2110468
1333
+ modified_image_time = 2110469
1334
+ modified_image_description = 2110470
1335
+ image_comments = 2113536
1336
+ original_image_identification = 2117632
1337
+ original_image_identification_nomenclature = 2117634
1338
+ stack_id = 2134102
1339
+ in_stack_position_number = 2134103
1340
+ frame_anatomy_sequence = 2134129
1341
+ frame_laterality = 2134130
1342
+ frame_content_sequence = 2134289
1343
+ plane_position_sequence = 2134291
1344
+ plane_orientation_sequence = 2134294
1345
+ temporal_position_index = 2134312
1346
+ nominal_cardiac_trigger_delay_time = 2134355
1347
+ nominal_cardiac_trigger_time_prior_to_r_peak = 2134356
1348
+ actual_cardiac_trigger_time_prior_to_r_peak = 2134357
1349
+ frame_acquisition_number = 2134358
1350
+ dimension_index_values = 2134359
1351
+ frame_comments = 2134360
1352
+ concatenation_uid = 2134369
1353
+ in_concatenation_number = 2134370
1354
+ in_concatenation_total_number = 2134371
1355
+ dimension_organization_uid = 2134372
1356
+ dimension_index_pointer = 2134373
1357
+ functional_group_pointer = 2134375
1358
+ unassigned_shared_converted_attributes_sequence = 2134384
1359
+ unassigned_per_frame_converted_attributes_sequence = 2134385
1360
+ conversion_source_attributes_sequence = 2134386
1361
+ dimension_index_private_creator = 2134547
1362
+ dimension_organization_sequence = 2134561
1363
+ dimension_index_sequence = 2134562
1364
+ concatenation_frame_offset_number = 2134568
1365
+ functional_group_private_creator = 2134584
1366
+ nominal_percentage_of_cardiac_phase = 2134593
1367
+ nominal_percentage_of_respiratory_phase = 2134597
1368
+ starting_respiratory_amplitude = 2134598
1369
+ starting_respiratory_phase = 2134599
1370
+ ending_respiratory_amplitude = 2134600
1371
+ ending_respiratory_phase = 2134601
1372
+ respiratory_trigger_type = 2134608
1373
+ r_r_interval_time_nominal = 2134609
1374
+ actual_cardiac_trigger_delay_time = 2134610
1375
+ respiratory_synchronization_sequence = 2134611
1376
+ respiratory_interval_time = 2134612
1377
+ nominal_respiratory_trigger_delay_time = 2134613
1378
+ respiratory_trigger_delay_threshold = 2134614
1379
+ actual_respiratory_trigger_delay_time = 2134615
1380
+ image_position__volume_ = 2134785
1381
+ image_orientation__volume_ = 2134786
1382
+ ultrasound_acquisition_geometry = 2134791
1383
+ apex_position = 2134792
1384
+ volume_to_transducer_mapping_matrix = 2134793
1385
+ volume_to_table_mapping_matrix = 2134794
1386
+ volume_to_transducer_relationship = 2134795
1387
+ patient_frame_of_reference_source = 2134796
1388
+ temporal_position_time_offset = 2134797
1389
+ plane_position__volume__sequence = 2134798
1390
+ plane_orientation__volume__sequence = 2134799
1391
+ temporal_position_sequence = 2134800
1392
+ dimension_organization_type = 2134801
1393
+ volume_frame_of_reference_uid = 2134802
1394
+ table_frame_of_reference_uid = 2134803
1395
+ dimension_description_label = 2135073
1396
+ patient_orientation_in_frame_sequence = 2135120
1397
+ frame_label = 2135123
1398
+ acquisition_index = 2135320
1399
+ contributing_sop_instances_reference_sequence = 2135337
1400
+ reconstruction_index = 2135350
1401
+ light_path_filter_pass_through_wavelength = 2228225
1402
+ light_path_filter_pass_band = 2228226
1403
+ image_path_filter_pass_through_wavelength = 2228227
1404
+ image_path_filter_pass_band = 2228228
1405
+ patient_eye_movement_commanded = 2228229
1406
+ patient_eye_movement_command_code_sequence = 2228230
1407
+ spherical_lens_power = 2228231
1408
+ cylinder_lens_power = 2228232
1409
+ cylinder_axis = 2228233
1410
+ emmetropic_magnification = 2228234
1411
+ intra_ocular_pressure = 2228235
1412
+ horizontal_field_of_view = 2228236
1413
+ pupil_dilated = 2228237
1414
+ degree_of_dilation = 2228238
1415
+ stereo_baseline_angle = 2228240
1416
+ stereo_baseline_displacement = 2228241
1417
+ stereo_horizontal_pixel_offset = 2228242
1418
+ stereo_vertical_pixel_offset = 2228243
1419
+ stereo_rotation = 2228244
1420
+ acquisition_device_type_code_sequence = 2228245
1421
+ illumination_type_code_sequence = 2228246
1422
+ light_path_filter_type_stack_code_sequence = 2228247
1423
+ image_path_filter_type_stack_code_sequence = 2228248
1424
+ lenses_code_sequence = 2228249
1425
+ channel_description_code_sequence = 2228250
1426
+ refractive_state_sequence = 2228251
1427
+ mydriatic_agent_code_sequence = 2228252
1428
+ relative_image_position_code_sequence = 2228253
1429
+ camera_angle_of_view = 2228254
1430
+ stereo_pairs_sequence = 2228256
1431
+ left_image_sequence = 2228257
1432
+ right_image_sequence = 2228258
1433
+ stereo_pairs_present = 2228264
1434
+ axial_length_of_the_eye = 2228272
1435
+ ophthalmic_frame_location_sequence = 2228273
1436
+ reference_coordinates = 2228274
1437
+ depth_spatial_resolution = 2228277
1438
+ maximum_depth_distortion = 2228278
1439
+ along_scan_spatial_resolution = 2228279
1440
+ maximum_along_scan_distortion = 2228280
1441
+ ophthalmic_image_orientation = 2228281
1442
+ depth_of_transverse_image = 2228289
1443
+ mydriatic_agent_concentration_units_sequence = 2228290
1444
+ across_scan_spatial_resolution = 2228296
1445
+ maximum_across_scan_distortion = 2228297
1446
+ mydriatic_agent_concentration = 2228302
1447
+ illumination_wave_length = 2228309
1448
+ illumination_power = 2228310
1449
+ illumination_bandwidth = 2228311
1450
+ mydriatic_agent_sequence = 2228312
1451
+ ophthalmic_axial_measurements_right_eye_sequence = 2232327
1452
+ ophthalmic_axial_measurements_left_eye_sequence = 2232328
1453
+ ophthalmic_axial_measurements_device_type = 2232329
1454
+ ophthalmic_axial_length_measurements_type = 2232336
1455
+ ophthalmic_axial_length_sequence = 2232338
1456
+ ophthalmic_axial_length = 2232345
1457
+ lens_status_code_sequence = 2232356
1458
+ vitreous_status_code_sequence = 2232357
1459
+ iol_formula_code_sequence = 2232360
1460
+ iol_formula_detail = 2232361
1461
+ keratometer_index = 2232371
1462
+ source_of_ophthalmic_axial_length_code_sequence = 2232373
1463
+ target_refraction = 2232375
1464
+ refractive_procedure_occurred = 2232377
1465
+ refractive_surgery_type_code_sequence = 2232384
1466
+ ophthalmic_ultrasound_method_code_sequence = 2232388
1467
+ ophthalmic_axial_length_measurements_sequence = 2232400
1468
+ iol_power = 2232403
1469
+ predicted_refractive_error = 2232404
1470
+ ophthalmic_axial_length_velocity = 2232409
1471
+ lens_status_description = 2232421
1472
+ vitreous_status_description = 2232422
1473
+ iol_power_sequence = 2232464
1474
+ lens_constant_sequence = 2232466
1475
+ iol_manufacturer = 2232467
1476
+ lens_constant_description = 2232468
1477
+ implant_name = 2232469
1478
+ keratometry_measurement_type_code_sequence = 2232470
1479
+ implant_part_number = 2232471
1480
+ referenced_ophthalmic_axial_measurements_sequence = 2232576
1481
+ ophthalmic_axial_length_measurements_segment_name_code_sequence = 2232577
1482
+ refractive_error_before_refractive_surgery_code_sequence = 2232579
1483
+ iol_power_for_exact_emmetropia = 2232609
1484
+ iol_power_for_exact_target_refraction = 2232610
1485
+ anterior_chamber_depth_definition_code_sequence = 2232613
1486
+ lens_thickness_sequence = 2232615
1487
+ anterior_chamber_depth_sequence = 2232616
1488
+ lens_thickness = 2232624
1489
+ anterior_chamber_depth = 2232625
1490
+ source_of_lens_thickness_data_code_sequence = 2232626
1491
+ source_of_anterior_chamber_depth_data_code_sequence = 2232627
1492
+ source_of_refractive_measurements_sequence = 2232628
1493
+ source_of_refractive_measurements_code_sequence = 2232629
1494
+ ophthalmic_axial_length_measurement_modified = 2232640
1495
+ ophthalmic_axial_length_data_source_code_sequence = 2232656
1496
+ ophthalmic_axial_length_acquisition_method_code_sequence = 2232659
1497
+ signal_to_noise_ratio = 2232661
1498
+ ophthalmic_axial_length_data_source_description = 2232665
1499
+ ophthalmic_axial_length_measurements_total_length_sequence = 2232848
1500
+ ophthalmic_axial_length_measurements_segmental_length_sequence = 2232849
1501
+ ophthalmic_axial_length_measurements_length_summation_sequence = 2232850
1502
+ ultrasound_ophthalmic_axial_length_measurements_sequence = 2232864
1503
+ optical_ophthalmic_axial_length_measurements_sequence = 2232869
1504
+ ultrasound_selected_ophthalmic_axial_length_sequence = 2232880
1505
+ ophthalmic_axial_length_selection_method_code_sequence = 2232912
1506
+ optical_selected_ophthalmic_axial_length_sequence = 2232917
1507
+ selected_segmental_ophthalmic_axial_length_sequence = 2232919
1508
+ selected_total_ophthalmic_axial_length_sequence = 2232928
1509
+ ophthalmic_axial_length_quality_metric_sequence = 2232930
1510
+ ophthalmic_axial_length_quality_metric_type_code_sequence = 2232933
1511
+ ophthalmic_axial_length_quality_metric_type_description = 2232947
1512
+ intraocular_lens_calculations_right_eye_sequence = 2233088
1513
+ intraocular_lens_calculations_left_eye_sequence = 2233104
1514
+ referenced_ophthalmic_axial_length_measurement_qc_image_sequence = 2233136
1515
+ ophthalmic_mapping_device_type = 2233365
1516
+ acquisition_method_code_sequence = 2233376
1517
+ acquisition_method_algorithm_sequence = 2233379
1518
+ ophthalmic_thickness_map_type_code_sequence = 2233398
1519
+ ophthalmic_thickness_mapping_normals_sequence = 2233411
1520
+ retinal_thickness_definition_code_sequence = 2233413
1521
+ pixel_value_mapping_to_coded_concept_sequence = 2233424
1522
+ mapped_pixel_value = 2233426
1523
+ pixel_value_mapping_explanation = 2233428
1524
+ ophthalmic_thickness_map_quality_threshold_sequence = 2233432
1525
+ ophthalmic_thickness_map_threshold_quality_rating = 2233440
1526
+ anatomic_structure_reference_point = 2233443
1527
+ registration_to_localizer_sequence = 2233445
1528
+ registered_localizer_units = 2233446
1529
+ registered_localizer_top_left_hand_corner = 2233447
1530
+ registered_localizer_bottom_right_hand_corner = 2233448
1531
+ ophthalmic_thickness_map_quality_rating_sequence = 2233456
1532
+ relevant_opt_attributes_sequence = 2233458
1533
+ transformation_method_code_sequence = 2233618
1534
+ transformation_algorithm_sequence = 2233619
1535
+ ophthalmic_axial_length_method = 2233621
1536
+ ophthalmic_fov = 2233623
1537
+ two_dimensional_to_three_dimensional_map_sequence = 2233624
1538
+ wide_field_ophthalmic_photography_quality_rating_sequence = 2233637
1539
+ wide_field_ophthalmic_photography_quality_threshold_sequence = 2233638
1540
+ wide_field_ophthalmic_photography_threshold_quality_rating = 2233639
1541
+ x_coordinates_center_pixel_view_angle = 2233640
1542
+ y_coordinates_center_pixel_view_angle = 2233641
1543
+ number_of_map_points = 2233648
1544
+ two_dimensional_to_three_dimensional_map_data = 2233649
1545
+ visual_field_horizontal_extent = 2359312
1546
+ visual_field_vertical_extent = 2359313
1547
+ visual_field_shape = 2359314
1548
+ screening_test_mode_code_sequence = 2359318
1549
+ maximum_stimulus_luminance = 2359320
1550
+ background_luminance = 2359328
1551
+ stimulus_color_code_sequence = 2359329
1552
+ background_illumination_color_code_sequence = 2359332
1553
+ stimulus_area = 2359333
1554
+ stimulus_presentation_time = 2359336
1555
+ fixation_sequence = 2359346
1556
+ fixation_monitoring_code_sequence = 2359347
1557
+ visual_field_catch_trial_sequence = 2359348
1558
+ fixation_checked_quantity = 2359349
1559
+ patient_not_properly_fixated_quantity = 2359350
1560
+ presented_visual_stimuli_data_flag = 2359351
1561
+ number_of_visual_stimuli = 2359352
1562
+ excessive_fixation_losses_data_flag = 2359353
1563
+ excessive_fixation_losses = 2359360
1564
+ stimuli_retesting_quantity = 2359362
1565
+ comments_on_patient_s_performance_of_visual_field = 2359364
1566
+ false_negatives_estimate_flag = 2359365
1567
+ false_negatives_estimate = 2359366
1568
+ negative_catch_trials_quantity = 2359368
1569
+ false_negatives_quantity = 2359376
1570
+ excessive_false_negatives_data_flag = 2359377
1571
+ excessive_false_negatives = 2359378
1572
+ false_positives_estimate_flag = 2359379
1573
+ false_positives_estimate = 2359380
1574
+ catch_trials_data_flag = 2359381
1575
+ positive_catch_trials_quantity = 2359382
1576
+ test_point_normals_data_flag = 2359383
1577
+ test_point_normals_sequence = 2359384
1578
+ global_deviation_probability_normals_flag = 2359385
1579
+ false_positives_quantity = 2359392
1580
+ excessive_false_positives_data_flag = 2359393
1581
+ excessive_false_positives = 2359394
1582
+ visual_field_test_normals_flag = 2359395
1583
+ results_normals_sequence = 2359396
1584
+ age_corrected_sensitivity_deviation_algorithm_sequence = 2359397
1585
+ global_deviation_from_normal = 2359398
1586
+ generalized_defect_sensitivity_deviation_algorithm_sequence = 2359399
1587
+ localized_deviation_from_normal = 2359400
1588
+ patient_reliability_indicator = 2359401
1589
+ visual_field_mean_sensitivity = 2359408
1590
+ global_deviation_probability = 2359409
1591
+ local_deviation_probability_normals_flag = 2359410
1592
+ localized_deviation_probability = 2359411
1593
+ short_term_fluctuation_calculated = 2359412
1594
+ short_term_fluctuation = 2359413
1595
+ short_term_fluctuation_probability_calculated = 2359414
1596
+ short_term_fluctuation_probability = 2359415
1597
+ corrected_localized_deviation_from_normal_calculated = 2359416
1598
+ corrected_localized_deviation_from_normal = 2359417
1599
+ corrected_localized_deviation_from_normal_probability_calculated = 2359424
1600
+ corrected_localized_deviation_from_normal_probability = 2359425
1601
+ global_deviation_probability_sequence = 2359427
1602
+ localized_deviation_probability_sequence = 2359429
1603
+ foveal_sensitivity_measured = 2359430
1604
+ foveal_sensitivity = 2359431
1605
+ visual_field_test_duration = 2359432
1606
+ visual_field_test_point_sequence = 2359433
1607
+ visual_field_test_point_x_coordinate = 2359440
1608
+ visual_field_test_point_y_coordinate = 2359441
1609
+ age_corrected_sensitivity_deviation_value = 2359442
1610
+ stimulus_results = 2359443
1611
+ sensitivity_value = 2359444
1612
+ retest_stimulus_seen = 2359445
1613
+ retest_sensitivity_value = 2359446
1614
+ visual_field_test_point_normals_sequence = 2359447
1615
+ quantified_defect = 2359448
1616
+ age_corrected_sensitivity_deviation_probability_value = 2359552
1617
+ generalized_defect_corrected_sensitivity_deviation_flag = 2359554
1618
+ generalized_defect_corrected_sensitivity_deviation_value = 2359555
1619
+ generalized_defect_corrected_sensitivity_deviation_probability_value = 2359556
1620
+ minimum_sensitivity_value = 2359557
1621
+ blind_spot_localized = 2359558
1622
+ blind_spot_x_coordinate = 2359559
1623
+ blind_spot_y_coordinate = 2359560
1624
+ visual_acuity_measurement_sequence = 2359568
1625
+ refractive_parameters_used_on_patient_sequence = 2359570
1626
+ measurement_laterality = 2359571
1627
+ ophthalmic_patient_clinical_information_left_eye_sequence = 2359572
1628
+ ophthalmic_patient_clinical_information_right_eye_sequence = 2359573
1629
+ foveal_point_normative_data_flag = 2359575
1630
+ foveal_point_probability_value = 2359576
1631
+ screening_baseline_measured = 2359584
1632
+ screening_baseline_measured_sequence = 2359586
1633
+ screening_baseline_type = 2359588
1634
+ screening_baseline_value = 2359590
1635
+ algorithm_source = 2359810
1636
+ data_set_name = 2360070
1637
+ data_set_version = 2360071
1638
+ data_set_source = 2360072
1639
+ data_set_description = 2360073
1640
+ visual_field_test_reliability_global_index_sequence = 2360087
1641
+ visual_field_global_results_index_sequence = 2360096
1642
+ data_observation_sequence = 2360101
1643
+ index_normals_flag = 2360120
1644
+ index_probability = 2360129
1645
+ index_probability_sequence = 2360132
1646
+ samples_per_pixel = 2621442
1647
+ samples_per_pixel_used = 2621443
1648
+ photometric_interpretation = 2621444
1649
+ image_dimensions = 2621445
1650
+ planar_configuration = 2621446
1651
+ number_of_frames = 2621448
1652
+ frame_increment_pointer = 2621449
1653
+ frame_dimension_pointer = 2621450
1654
+ rows = 2621456
1655
+ columns = 2621457
1656
+ planes = 2621458
1657
+ ultrasound_color_data_present = 2621460
1658
+ pixel_spacing = 2621488
1659
+ zoom_factor = 2621489
1660
+ zoom_center = 2621490
1661
+ pixel_aspect_ratio = 2621492
1662
+ image_format = 2621504
1663
+ manipulated_image = 2621520
1664
+ corrected_image = 2621521
1665
+ compression_recognition_code = 2621535
1666
+ compression_code = 2621536
1667
+ compression_originator = 2621537
1668
+ compression_label = 2621538
1669
+ compression_description = 2621539
1670
+ compression_sequence = 2621541
1671
+ compression_step_pointers = 2621542
1672
+ repeat_interval = 2621544
1673
+ bits_grouped = 2621545
1674
+ perimeter_table = 2621552
1675
+ perimeter_value = 2621553
1676
+ predictor_rows = 2621568
1677
+ predictor_columns = 2621569
1678
+ predictor_constants = 2621570
1679
+ blocked_pixels = 2621584
1680
+ block_rows = 2621585
1681
+ block_columns = 2621586
1682
+ row_overlap = 2621587
1683
+ column_overlap = 2621588
1684
+ bits_allocated = 2621696
1685
+ bits_stored = 2621697
1686
+ high_bit = 2621698
1687
+ pixel_representation = 2621699
1688
+ smallest_valid_pixel_value = 2621700
1689
+ largest_valid_pixel_value = 2621701
1690
+ smallest_image_pixel_value = 2621702
1691
+ largest_image_pixel_value = 2621703
1692
+ smallest_pixel_value_in_series = 2621704
1693
+ largest_pixel_value_in_series = 2621705
1694
+ smallest_image_pixel_value_in_plane = 2621712
1695
+ largest_image_pixel_value_in_plane = 2621713
1696
+ pixel_padding_value = 2621728
1697
+ pixel_padding_range_limit = 2621729
1698
+ float_pixel_padding_value = 2621730
1699
+ double_float_pixel_padding_value = 2621731
1700
+ float_pixel_padding_range_limit = 2621732
1701
+ double_float_pixel_padding_range_limit = 2621733
1702
+ image_location = 2621952
1703
+ quality_control_image = 2622208
1704
+ burned_in_annotation = 2622209
1705
+ recognizable_visual_features = 2622210
1706
+ longitudinal_temporal_information_modified = 2622211
1707
+ referenced_color_palette_instance_uid = 2622212
1708
+ transform_label = 2622464
1709
+ transform_version_number = 2622465
1710
+ number_of_transform_steps = 2622466
1711
+ sequence_of_compressed_data = 2622467
1712
+ details_of_coefficients = 2622468
1713
+ dct_label = 2623232
1714
+ data_block_description = 2623233
1715
+ data_block = 2623234
1716
+ normalization_factor_format = 2623248
1717
+ zonal_map_number_format = 2623264
1718
+ zonal_map_location = 2623265
1719
+ zonal_map_format = 2623266
1720
+ adaptive_map_format = 2623280
1721
+ code_number_format = 2623296
1722
+ pixel_spacing_calibration_type = 2624002
1723
+ pixel_spacing_calibration_description = 2624004
1724
+ pixel_intensity_relationship = 2625600
1725
+ pixel_intensity_relationship_sign = 2625601
1726
+ window_center = 2625616
1727
+ window_width = 2625617
1728
+ rescale_intercept = 2625618
1729
+ rescale_slope = 2625619
1730
+ rescale_type = 2625620
1731
+ window_center___width_explanation = 2625621
1732
+ voi_lut_function = 2625622
1733
+ gray_scale = 2625664
1734
+ recommended_viewing_mode = 2625680
1735
+ gray_lookup_table_descriptor = 2625792
1736
+ red_palette_color_lookup_table_descriptor = 2625793
1737
+ green_palette_color_lookup_table_descriptor = 2625794
1738
+ blue_palette_color_lookup_table_descriptor = 2625795
1739
+ alpha_palette_color_lookup_table_descriptor = 2625796
1740
+ large_red_palette_color_lookup_table_descriptor = 2625809
1741
+ large_green_palette_color_lookup_table_descriptor = 2625810
1742
+ large_blue_palette_color_lookup_table_descriptor = 2625811
1743
+ palette_color_lookup_table_uid = 2625945
1744
+ gray_lookup_table_data = 2626048
1745
+ red_palette_color_lookup_table_data = 2626049
1746
+ green_palette_color_lookup_table_data = 2626050
1747
+ blue_palette_color_lookup_table_data = 2626051
1748
+ alpha_palette_color_lookup_table_data = 2626052
1749
+ large_red_palette_color_lookup_table_data = 2626065
1750
+ large_green_palette_color_lookup_table_data = 2626066
1751
+ large_blue_palette_color_lookup_table_data = 2626067
1752
+ large_palette_color_lookup_table_uid = 2626068
1753
+ segmented_red_palette_color_lookup_table_data = 2626081
1754
+ segmented_green_palette_color_lookup_table_data = 2626082
1755
+ segmented_blue_palette_color_lookup_table_data = 2626083
1756
+ segmented_alpha_palette_color_lookup_table_data = 2626084
1757
+ breast_implant_present = 2626304
1758
+ partial_view = 2626384
1759
+ partial_view_description = 2626385
1760
+ partial_view_code_sequence = 2626386
1761
+ spatial_locations_preserved = 2626394
1762
+ data_frame_assignment_sequence = 2626561
1763
+ data_path_assignment = 2626562
1764
+ bits_mapped_to_color_lookup_table = 2626563
1765
+ blending_lut_1_sequence = 2626564
1766
+ blending_lut_1_transfer_function = 2626565
1767
+ blending_weight_constant = 2626566
1768
+ blending_lookup_table_descriptor = 2626567
1769
+ blending_lookup_table_data = 2626568
1770
+ enhanced_palette_color_lookup_table_sequence = 2626571
1771
+ blending_lut_2_sequence = 2626572
1772
+ blending_lut_2_transfer_function = 2626573
1773
+ data_path_id = 2626574
1774
+ rgb_lut_transfer_function = 2626575
1775
+ alpha_lut_transfer_function = 2626576
1776
+ icc_profile = 2629632
1777
+ color_space = 2629634
1778
+ lossy_image_compression = 2629904
1779
+ lossy_image_compression_ratio = 2629906
1780
+ lossy_image_compression_method = 2629908
1781
+ modality_lut_sequence = 2633728
1782
+ lut_descriptor = 2633730
1783
+ lut_explanation = 2633731
1784
+ modality_lut_type = 2633732
1785
+ lut_data = 2633734
1786
+ voi_lut_sequence = 2633744
1787
+ softcopy_voi_lut_sequence = 2634000
1788
+ image_presentation_comments = 2637824
1789
+ bi_plane_acquisition_sequence = 2641920
1790
+ representative_frame_number = 2646032
1791
+ frame_numbers_of_interest__foi_ = 2646048
1792
+ frame_of_interest_description = 2646050
1793
+ frame_of_interest_type = 2646051
1794
+ mask_pointer_s_ = 2646064
1795
+ r_wave_pointer = 2646080
1796
+ mask_subtraction_sequence = 2646272
1797
+ mask_operation = 2646273
1798
+ applicable_frame_range = 2646274
1799
+ mask_frame_numbers = 2646288
1800
+ contrast_frame_averaging = 2646290
1801
+ mask_sub_pixel_shift = 2646292
1802
+ tid_offset = 2646304
1803
+ mask_operation_explanation = 2646416
1804
+ equipment_administrator_sequence = 2650112
1805
+ number_of_display_subsystems = 2650113
1806
+ current_configuration_id = 2650114
1807
+ display_subsystem_id = 2650115
1808
+ display_subsystem_name = 2650116
1809
+ display_subsystem_description = 2650117
1810
+ system_status = 2650118
1811
+ system_status_comment = 2650119
1812
+ target_luminance_characteristics_sequence = 2650120
1813
+ luminance_characteristics_id = 2650121
1814
+ display_subsystem_configuration_sequence = 2650122
1815
+ configuration_id = 2650123
1816
+ configuration_name = 2650124
1817
+ configuration_description = 2650125
1818
+ referenced_target_luminance_characteristics_id = 2650126
1819
+ qa_results_sequence = 2650127
1820
+ display_subsystem_qa_results_sequence = 2650128
1821
+ configuration_qa_results_sequence = 2650129
1822
+ measurement_equipment_sequence = 2650130
1823
+ measurement_functions = 2650131
1824
+ measurement_equipment_type = 2650132
1825
+ visual_evaluation_result_sequence = 2650133
1826
+ display_calibration_result_sequence = 2650134
1827
+ ddl_value = 2650135
1828
+ ciexy_white_point = 2650136
1829
+ display_function_type = 2650137
1830
+ gamma_value = 2650138
1831
+ number_of_luminance_points = 2650139
1832
+ luminance_response_sequence = 2650140
1833
+ target_minimum_luminance = 2650141
1834
+ target_maximum_luminance = 2650142
1835
+ luminance_value = 2650143
1836
+ luminance_response_description = 2650144
1837
+ white_point_flag = 2650145
1838
+ display_device_type_code_sequence = 2650146
1839
+ display_subsystem_sequence = 2650147
1840
+ luminance_result_sequence = 2650148
1841
+ ambient_light_value_source = 2650149
1842
+ measured_characteristics = 2650150
1843
+ luminance_uniformity_result_sequence = 2650151
1844
+ visual_evaluation_test_sequence = 2650152
1845
+ test_result = 2650153
1846
+ test_result_comment = 2650154
1847
+ test_image_validation = 2650155
1848
+ test_pattern_code_sequence = 2650156
1849
+ measurement_pattern_code_sequence = 2650157
1850
+ visual_evaluation_method_code_sequence = 2650158
1851
+ pixel_data_provider_url = 2654176
1852
+ data_point_rows = 2658305
1853
+ data_point_columns = 2658306
1854
+ signal_domain_columns = 2658307
1855
+ largest_monochrome_pixel_value = 2658457
1856
+ data_representation = 2658568
1857
+ pixel_measures_sequence = 2658576
1858
+ frame_voi_lut_sequence = 2658610
1859
+ pixel_value_transformation_sequence = 2658629
1860
+ signal_domain_rows = 2658869
1861
+ display_filter_percentage = 2659345
1862
+ frame_pixel_shift_sequence = 2659349
1863
+ subtraction_item_id = 2659350
1864
+ pixel_intensity_relationship_lut_sequence = 2659362
1865
+ frame_pixel_data_properties_sequence = 2659395
1866
+ geometrical_properties = 2659396
1867
+ geometric_maximum_distortion = 2659397
1868
+ image_processing_applied = 2659398
1869
+ mask_selection_mode = 2659412
1870
+ lut_function = 2659444
1871
+ mask_visibility_percentage = 2659448
1872
+ pixel_shift_sequence = 2659585
1873
+ region_pixel_shift_sequence = 2659586
1874
+ vertices_of_the_region = 2659587
1875
+ multi_frame_presentation_sequence = 2659589
1876
+ pixel_shift_frame_range = 2659590
1877
+ lut_frame_range = 2659591
1878
+ image_to_equipment_mapping_matrix = 2659616
1879
+ equipment_coordinate_system_identification = 2659639
1880
+ study_status_id = 3276810
1881
+ study_priority_id = 3276812
1882
+ study_id_issuer = 3276818
1883
+ study_verified_date = 3276850
1884
+ study_verified_time = 3276851
1885
+ study_read_date = 3276852
1886
+ study_read_time = 3276853
1887
+ scheduled_study_start_date = 3280896
1888
+ scheduled_study_start_time = 3280897
1889
+ scheduled_study_stop_date = 3280912
1890
+ scheduled_study_stop_time = 3280913
1891
+ scheduled_study_location = 3280928
1892
+ scheduled_study_location_ae_title = 3280929
1893
+ reason_for_study = 3280944
1894
+ requesting_physician_identification_sequence = 3280945
1895
+ requesting_physician = 3280946
1896
+ requesting_service = 3280947
1897
+ requesting_service_code_sequence = 3280948
1898
+ study_arrival_date = 3280960
1899
+ study_arrival_time = 3280961
1900
+ study_completion_date = 3280976
1901
+ study_completion_time = 3280977
1902
+ study_component_status_id = 3280981
1903
+ requested_procedure_description = 3280992
1904
+ requested_procedure_code_sequence = 3280996
1905
+ requested_contrast_agent = 3281008
1906
+ study_comments = 3293184
1907
+ referenced_patient_alias_sequence = 3670020
1908
+ visit_status_id = 3670024
1909
+ admission_id = 3670032
1910
+ issuer_of_admission_id = 3670033
1911
+ issuer_of_admission_id_sequence = 3670036
1912
+ route_of_admissions = 3670038
1913
+ scheduled_admission_date = 3670042
1914
+ scheduled_admission_time = 3670043
1915
+ scheduled_discharge_date = 3670044
1916
+ scheduled_discharge_time = 3670045
1917
+ scheduled_patient_institution_residence = 3670046
1918
+ admitting_date = 3670048
1919
+ admitting_time = 3670049
1920
+ discharge_date = 3670064
1921
+ discharge_time = 3670066
1922
+ discharge_diagnosis_description = 3670080
1923
+ discharge_diagnosis_code_sequence = 3670084
1924
+ special_needs = 3670096
1925
+ service_episode_id = 3670112
1926
+ issuer_of_service_episode_id = 3670113
1927
+ service_episode_description = 3670114
1928
+ issuer_of_service_episode_id_sequence = 3670116
1929
+ pertinent_documents_sequence = 3670272
1930
+ pertinent_resources_sequence = 3670273
1931
+ resource_description = 3670274
1932
+ current_patient_location = 3670784
1933
+ patient_s_institution_residence = 3671040
1934
+ patient_state = 3671296
1935
+ patient_clinical_trial_participation_sequence = 3671298
1936
+ visit_comments = 3686400
1937
+ waveform_originality = 3801092
1938
+ number_of_waveform_channels = 3801093
1939
+ number_of_waveform_samples = 3801104
1940
+ sampling_frequency = 3801114
1941
+ multiplex_group_label = 3801120
1942
+ channel_definition_sequence = 3801600
1943
+ waveform_channel_number = 3801602
1944
+ channel_label = 3801603
1945
+ channel_status = 3801605
1946
+ channel_source_sequence = 3801608
1947
+ channel_source_modifiers_sequence = 3801609
1948
+ source_waveform_sequence = 3801610
1949
+ channel_derivation_description = 3801612
1950
+ channel_sensitivity = 3801616
1951
+ channel_sensitivity_units_sequence = 3801617
1952
+ channel_sensitivity_correction_factor = 3801618
1953
+ channel_baseline = 3801619
1954
+ channel_time_skew = 3801620
1955
+ channel_sample_skew = 3801621
1956
+ channel_offset = 3801624
1957
+ waveform_bits_stored = 3801626
1958
+ filter_low_frequency = 3801632
1959
+ filter_high_frequency = 3801633
1960
+ notch_filter_frequency = 3801634
1961
+ notch_filter_bandwidth = 3801635
1962
+ waveform_data_display_scale = 3801648
1963
+ waveform_display_background_cielab_value = 3801649
1964
+ waveform_presentation_group_sequence = 3801664
1965
+ presentation_group_number = 3801665
1966
+ channel_display_sequence = 3801666
1967
+ channel_recommended_display_cielab_value = 3801668
1968
+ channel_position = 3801669
1969
+ display_shading_flag = 3801670
1970
+ fractional_channel_display_scale = 3801671
1971
+ absolute_channel_display_scale = 3801672
1972
+ multiplexed_audio_channels_description_code_sequence = 3801856
1973
+ channel_identification_code = 3801857
1974
+ channel_mode = 3801858
1975
+ scheduled_station_ae_title = 4194305
1976
+ scheduled_procedure_step_start_date = 4194306
1977
+ scheduled_procedure_step_start_time = 4194307
1978
+ scheduled_procedure_step_end_date = 4194308
1979
+ scheduled_procedure_step_end_time = 4194309
1980
+ scheduled_performing_physician_s_name = 4194310
1981
+ scheduled_procedure_step_description = 4194311
1982
+ scheduled_protocol_code_sequence = 4194312
1983
+ scheduled_procedure_step_id = 4194313
1984
+ stage_code_sequence = 4194314
1985
+ scheduled_performing_physician_identification_sequence = 4194315
1986
+ scheduled_station_name = 4194320
1987
+ scheduled_procedure_step_location = 4194321
1988
+ pre_medication = 4194322
1989
+ scheduled_procedure_step_status = 4194336
1990
+ order_placer_identifier_sequence = 4194342
1991
+ order_filler_identifier_sequence = 4194343
1992
+ local_namespace_entity_id = 4194353
1993
+ universal_entity_id = 4194354
1994
+ universal_entity_id_type = 4194355
1995
+ identifier_type_code = 4194357
1996
+ assigning_facility_sequence = 4194358
1997
+ assigning_jurisdiction_code_sequence = 4194361
1998
+ assigning_agency_or_department_code_sequence = 4194362
1999
+ scheduled_procedure_step_sequence = 4194560
2000
+ referenced_non_image_composite_sop_instance_sequence = 4194848
2001
+ performed_station_ae_title = 4194881
2002
+ performed_station_name = 4194882
2003
+ performed_location = 4194883
2004
+ performed_procedure_step_start_date = 4194884
2005
+ performed_procedure_step_start_time = 4194885
2006
+ performed_procedure_step_end_date = 4194896
2007
+ performed_procedure_step_end_time = 4194897
2008
+ performed_procedure_step_status = 4194898
2009
+ performed_procedure_step_id = 4194899
2010
+ performed_procedure_step_description = 4194900
2011
+ performed_procedure_type_description = 4194901
2012
+ performed_protocol_code_sequence = 4194912
2013
+ performed_protocol_type = 4194913
2014
+ scheduled_step_attributes_sequence = 4194928
2015
+ request_attributes_sequence = 4194933
2016
+ comments_on_the_performed_procedure_step = 4194944
2017
+ performed_procedure_step_discontinuation_reason_code_sequence = 4194945
2018
+ quantity_sequence = 4194963
2019
+ quantity = 4194964
2020
+ measuring_units_sequence = 4194965
2021
+ billing_item_sequence = 4194966
2022
+ total_time_of_fluoroscopy = 4195072
2023
+ total_number_of_exposures = 4195073
2024
+ entrance_dose = 4195074
2025
+ exposed_area = 4195075
2026
+ distance_source_to_entrance = 4195078
2027
+ distance_source_to_support = 4195079
2028
+ exposure_dose_sequence = 4195086
2029
+ comments_on_radiation_dose = 4195088
2030
+ x_ray_output = 4195090
2031
+ half_value_layer = 4195092
2032
+ organ_dose = 4195094
2033
+ organ_exposed = 4195096
2034
+ billing_procedure_step_sequence = 4195104
2035
+ film_consumption_sequence = 4195105
2036
+ billing_supplies_and_devices_sequence = 4195108
2037
+ referenced_procedure_step_sequence = 4195120
2038
+ performed_series_sequence = 4195136
2039
+ comments_on_the_scheduled_procedure_step = 4195328
2040
+ protocol_context_sequence = 4195392
2041
+ content_item_modifier_sequence = 4195393
2042
+ scheduled_specimen_sequence = 4195584
2043
+ specimen_accession_number = 4195594
2044
+ container_identifier = 4195602
2045
+ issuer_of_the_container_identifier_sequence = 4195603
2046
+ alternate_container_identifier_sequence = 4195605
2047
+ container_type_code_sequence = 4195608
2048
+ container_description = 4195610
2049
+ container_component_sequence = 4195616
2050
+ specimen_sequence = 4195664
2051
+ specimen_identifier = 4195665
2052
+ specimen_description_sequence__trial_ = 4195666
2053
+ specimen_description__trial_ = 4195667
2054
+ specimen_uid = 4195668
2055
+ acquisition_context_sequence = 4195669
2056
+ acquisition_context_description = 4195670
2057
+ specimen_description_sequence = 4195680
2058
+ issuer_of_the_specimen_identifier_sequence = 4195682
2059
+ specimen_type_code_sequence = 4195738
2060
+ specimen_short_description = 4195840
2061
+ specimen_detailed_description = 4195842
2062
+ specimen_preparation_sequence = 4195856
2063
+ specimen_preparation_step_content_item_sequence = 4195858
2064
+ specimen_localization_content_item_sequence = 4195872
2065
+ slide_identifier = 4196090
2066
+ image_center_point_coordinates_sequence = 4196122
2067
+ x_offset_in_slide_coordinate_system = 4196138
2068
+ y_offset_in_slide_coordinate_system = 4196154
2069
+ z_offset_in_slide_coordinate_system = 4196170
2070
+ pixel_spacing_sequence = 4196568
2071
+ coordinate_system_axis_code_sequence = 4196570
2072
+ measurement_units_code_sequence = 4196586
2073
+ vital_stain_code_sequence__trial_ = 4196856
2074
+ requested_procedure_id = 4198401
2075
+ reason_for_the_requested_procedure = 4198402
2076
+ requested_procedure_priority = 4198403
2077
+ patient_transport_arrangements = 4198404
2078
+ requested_procedure_location = 4198405
2079
+ placer_order_number___procedure = 4198406
2080
+ filler_order_number___procedure = 4198407
2081
+ confidentiality_code = 4198408
2082
+ reporting_priority = 4198409
2083
+ reason_for_requested_procedure_code_sequence = 4198410
2084
+ names_of_intended_recipients_of_results = 4198416
2085
+ intended_recipients_of_results_identification_sequence = 4198417
2086
+ reason_for_performed_procedure_code_sequence = 4198418
2087
+ requested_procedure_description__trial_ = 4198496
2088
+ person_identification_code_sequence = 4198657
2089
+ person_s_address = 4198658
2090
+ person_s_telephone_numbers = 4198659
2091
+ person_s_telecom_information = 4198660
2092
+ requested_procedure_comments = 4199424
2093
+ reason_for_the_imaging_service_request = 4202497
2094
+ issue_date_of_imaging_service_request = 4202500
2095
+ issue_time_of_imaging_service_request = 4202501
2096
+ placer_order_number___imaging_service_request__retired_ = 4202502
2097
+ filler_order_number___imaging_service_request__retired_ = 4202503
2098
+ order_entered_by = 4202504
2099
+ order_enterer_s_location = 4202505
2100
+ order_callback_phone_number = 4202512
2101
+ order_callback_telecom_information = 4202513
2102
+ placer_order_number___imaging_service_request = 4202518
2103
+ filler_order_number___imaging_service_request = 4202519
2104
+ imaging_service_request_comments = 4203520
2105
+ confidentiality_constraint_on_patient_data_description = 4206593
2106
+ general_purpose_scheduled_procedure_step_status = 4210689
2107
+ general_purpose_performed_procedure_step_status = 4210690
2108
+ general_purpose_scheduled_procedure_step_priority = 4210691
2109
+ scheduled_processing_applications_code_sequence = 4210692
2110
+ scheduled_procedure_step_start_datetime = 4210693
2111
+ multiple_copies_flag = 4210694
2112
+ performed_processing_applications_code_sequence = 4210695
2113
+ human_performer_code_sequence = 4210697
2114
+ scheduled_procedure_step_modification_datetime = 4210704
2115
+ expected_completion_datetime = 4210705
2116
+ resulting_general_purpose_performed_procedure_steps_sequence = 4210709
2117
+ referenced_general_purpose_scheduled_procedure_step_sequence = 4210710
2118
+ scheduled_workitem_code_sequence = 4210712
2119
+ performed_workitem_code_sequence = 4210713
2120
+ input_availability_flag = 4210720
2121
+ input_information_sequence = 4210721
2122
+ relevant_information_sequence = 4210722
2123
+ referenced_general_purpose_scheduled_procedure_step_transaction_uid = 4210723
2124
+ scheduled_station_name_code_sequence = 4210725
2125
+ scheduled_station_class_code_sequence = 4210726
2126
+ scheduled_station_geographic_location_code_sequence = 4210727
2127
+ performed_station_name_code_sequence = 4210728
2128
+ performed_station_class_code_sequence = 4210729
2129
+ performed_station_geographic_location_code_sequence = 4210736
2130
+ requested_subsequent_workitem_code_sequence = 4210737
2131
+ non_dicom_output_code_sequence = 4210738
2132
+ output_information_sequence = 4210739
2133
+ scheduled_human_performers_sequence = 4210740
2134
+ actual_human_performers_sequence = 4210741
2135
+ human_performer_s_organization = 4210742
2136
+ human_performer_s_name = 4210743
2137
+ raw_data_handling = 4210752
2138
+ input_readiness_state = 4210753
2139
+ performed_procedure_step_start_datetime = 4210768
2140
+ performed_procedure_step_end_datetime = 4210769
2141
+ procedure_step_cancellation_datetime = 4210770
2142
+ output_destination_sequence = 4210800
2143
+ dicom_storage_sequence = 4210801
2144
+ stow_rs_storage_sequence = 4210802
2145
+ storage_url = 4210803
2146
+ xds_storage_sequence = 4210804
2147
+ entrance_dose_in_mgy = 4227842
2148
+ parametric_map_frame_type_sequence = 4231314
2149
+ referenced_image_real_world_value_mapping_sequence = 4231316
2150
+ real_world_value_mapping_sequence = 4231318
2151
+ pixel_value_mapping_code_sequence = 4231320
2152
+ lut_label = 4231696
2153
+ real_world_value_last_value_mapped = 4231697
2154
+ real_world_value_lut_data = 4231698
2155
+ double_float_real_world_value_last_value_mapped = 4231699
2156
+ double_float_real_world_value_first_value_mapped = 4231700
2157
+ real_world_value_first_value_mapped = 4231702
2158
+ quantity_definition_sequence = 4231712
2159
+ real_world_value_intercept = 4231716
2160
+ real_world_value_slope = 4231717
2161
+ findings_flag__trial_ = 4235271
2162
+ relationship_type = 4235280
2163
+ findings_sequence__trial_ = 4235296
2164
+ findings_group_uid__trial_ = 4235297
2165
+ referenced_findings_group_uid__trial_ = 4235298
2166
+ findings_group_recording_date__trial_ = 4235299
2167
+ findings_group_recording_time__trial_ = 4235300
2168
+ findings_source_category_code_sequence__trial_ = 4235302
2169
+ verifying_organization = 4235303
2170
+ documenting_organization_identifier_code_sequence__trial_ = 4235304
2171
+ verification_datetime = 4235312
2172
+ observation_datetime = 4235314
2173
+ value_type = 4235328
2174
+ concept_name_code_sequence = 4235331
2175
+ measurement_precision_description__trial_ = 4235335
2176
+ continuity_of_content = 4235344
2177
+ urgency_or_priority_alerts__trial_ = 4235351
2178
+ sequencing_indicator__trial_ = 4235360
2179
+ document_identifier_code_sequence__trial_ = 4235366
2180
+ document_author__trial_ = 4235367
2181
+ document_author_identifier_code_sequence__trial_ = 4235368
2182
+ identifier_code_sequence__trial_ = 4235376
2183
+ verifying_observer_sequence = 4235379
2184
+ object_binary_identifier__trial_ = 4235380
2185
+ verifying_observer_name = 4235381
2186
+ documenting_observer_identifier_code_sequence__trial_ = 4235382
2187
+ author_observer_sequence = 4235384
2188
+ participant_sequence = 4235386
2189
+ custodial_organization_sequence = 4235388
2190
+ participation_type = 4235392
2191
+ participation_datetime = 4235394
2192
+ observer_type = 4235396
2193
+ procedure_identifier_code_sequence__trial_ = 4235397
2194
+ verifying_observer_identification_code_sequence = 4235400
2195
+ object_directory_binary_identifier__trial_ = 4235401
2196
+ equivalent_cda_document_sequence = 4235408
2197
+ referenced_waveform_channels = 4235440
2198
+ date_of_document_or_verbal_transaction__trial_ = 4235536
2199
+ time_of_document_creation_or_verbal_transaction__trial_ = 4235538
2200
+ datetime = 4235552
2201
+ date = 4235553
2202
+ time = 4235554
2203
+ person_name = 4235555
2204
+ uid = 4235556
2205
+ report_status_id__trial_ = 4235557
2206
+ temporal_range_type = 4235568
2207
+ referenced_sample_positions = 4235570
2208
+ referenced_frame_numbers = 4235574
2209
+ referenced_time_offsets = 4235576
2210
+ referenced_datetime = 4235578
2211
+ text_value = 4235616
2212
+ floating_point_value = 4235617
2213
+ rational_numerator_value = 4235618
2214
+ rational_denominator_value = 4235619
2215
+ observation_category_code_sequence__trial_ = 4235623
2216
+ concept_code_sequence = 4235624
2217
+ bibliographic_citation__trial_ = 4235626
2218
+ purpose_of_reference_code_sequence = 4235632
2219
+ observation_uid = 4235633
2220
+ referenced_observation_uid__trial_ = 4235634
2221
+ referenced_observation_class__trial_ = 4235635
2222
+ referenced_object_observation_class__trial_ = 4235636
2223
+ annotation_group_number = 4235648
2224
+ observation_date__trial_ = 4235666
2225
+ observation_time__trial_ = 4235667
2226
+ measurement_automation__trial_ = 4235668
2227
+ modifier_code_sequence = 4235669
2228
+ identification_description__trial_ = 4235812
2229
+ coordinates_set_geometric_type__trial_ = 4235920
2230
+ algorithm_code_sequence__trial_ = 4235926
2231
+ algorithm_description__trial_ = 4235927
2232
+ pixel_coordinates_set__trial_ = 4235930
2233
+ measured_value_sequence = 4236032
2234
+ numeric_value_qualifier_code_sequence = 4236033
2235
+ current_observer__trial_ = 4236039
2236
+ numeric_value = 4236042
2237
+ referenced_accession_sequence__trial_ = 4236051
2238
+ report_status_comment__trial_ = 4236090
2239
+ procedure_context_sequence__trial_ = 4236096
2240
+ verbal_source__trial_ = 4236114
2241
+ address__trial_ = 4236115
2242
+ telephone_number__trial_ = 4236116
2243
+ verbal_source_identifier_code_sequence__trial_ = 4236120
2244
+ predecessor_documents_sequence = 4236128
2245
+ referenced_request_sequence = 4236144
2246
+ performed_procedure_code_sequence = 4236146
2247
+ current_requested_procedure_evidence_sequence = 4236149
2248
+ report_detail_sequence__trial_ = 4236160
2249
+ pertinent_other_evidence_sequence = 4236165
2250
+ hl7_structured_document_reference_sequence = 4236176
2251
+ observation_subject_uid__trial_ = 4236290
2252
+ observation_subject_class__trial_ = 4236291
2253
+ observation_subject_type_code_sequence__trial_ = 4236292
2254
+ completion_flag = 4236433
2255
+ completion_flag_description = 4236434
2256
+ verification_flag = 4236435
2257
+ archive_requested = 4236436
2258
+ preliminary_flag = 4236438
2259
+ content_template_sequence = 4236548
2260
+ identical_documents_sequence = 4236581
2261
+ observation_subject_context_flag__trial_ = 4236800
2262
+ observer_context_flag__trial_ = 4236801
2263
+ procedure_context_flag__trial_ = 4236803
2264
+ content_sequence = 4237104
2265
+ relationship_sequence__trial_ = 4237105
2266
+ relationship_type_code_sequence__trial_ = 4237106
2267
+ language_code_sequence__trial_ = 4237124
2268
+ uniform_resource_locator__trial_ = 4237714
2269
+ waveform_annotation_sequence = 4239392
2270
+ template_identifier = 4250368
2271
+ template_version = 4250374
2272
+ template_local_version = 4250375
2273
+ template_extension_flag = 4250379
2274
+ template_extension_organization_uid = 4250380
2275
+ template_extension_creator_uid = 4250381
2276
+ referenced_content_item_identifier = 4250483
2277
+ hl7_instance_identifier = 4251649
2278
+ hl7_document_effective_time = 4251652
2279
+ hl7_document_type_code_sequence = 4251654
2280
+ document_class_code_sequence = 4251656
2281
+ retrieve_uri = 4251664
2282
+ retrieve_location_uid = 4251665
2283
+ type_of_instances = 4251680
2284
+ dicom_retrieval_sequence = 4251681
2285
+ dicom_media_retrieval_sequence = 4251682
2286
+ wado_retrieval_sequence = 4251683
2287
+ xds_retrieval_sequence = 4251684
2288
+ wado_rs_retrieval_sequence = 4251685
2289
+ repository_unique_id = 4251696
2290
+ home_community_id = 4251697
2291
+ document_title = 4325392
2292
+ encapsulated_document = 4325393
2293
+ mime_type_of_encapsulated_document = 4325394
2294
+ source_instance_sequence = 4325395
2295
+ list_of_mime_types = 4325396
2296
+ product_package_identifier = 4456449
2297
+ substance_administration_approval = 4456450
2298
+ approval_status_further_description = 4456451
2299
+ approval_status_datetime = 4456452
2300
+ product_type_code_sequence = 4456455
2301
+ product_name = 4456456
2302
+ product_description = 4456457
2303
+ product_lot_identifier = 4456458
2304
+ product_expiration_datetime = 4456459
2305
+ substance_administration_datetime = 4456464
2306
+ substance_administration_notes = 4456465
2307
+ substance_administration_device_id = 4456466
2308
+ product_parameter_sequence = 4456467
2309
+ substance_administration_parameter_sequence = 4456473
2310
+ lens_description = 4587538
2311
+ right_lens_sequence = 4587540
2312
+ left_lens_sequence = 4587541
2313
+ unspecified_laterality_lens_sequence = 4587542
2314
+ cylinder_sequence = 4587544
2315
+ prism_sequence = 4587560
2316
+ horizontal_prism_power = 4587568
2317
+ horizontal_prism_base = 4587570
2318
+ vertical_prism_power = 4587572
2319
+ vertical_prism_base = 4587574
2320
+ lens_segment_type = 4587576
2321
+ optical_transmittance = 4587584
2322
+ channel_width = 4587586
2323
+ pupil_size = 4587588
2324
+ corneal_size = 4587590
2325
+ autorefraction_right_eye_sequence = 4587600
2326
+ autorefraction_left_eye_sequence = 4587602
2327
+ distance_pupillary_distance = 4587616
2328
+ near_pupillary_distance = 4587618
2329
+ intermediate_pupillary_distance = 4587619
2330
+ other_pupillary_distance = 4587620
2331
+ keratometry_right_eye_sequence = 4587632
2332
+ keratometry_left_eye_sequence = 4587633
2333
+ steep_keratometric_axis_sequence = 4587636
2334
+ radius_of_curvature = 4587637
2335
+ keratometric_power = 4587638
2336
+ keratometric_axis = 4587639
2337
+ flat_keratometric_axis_sequence = 4587648
2338
+ background_color = 4587666
2339
+ optotype = 4587668
2340
+ optotype_presentation = 4587669
2341
+ subjective_refraction_right_eye_sequence = 4587671
2342
+ subjective_refraction_left_eye_sequence = 4587672
2343
+ add_near_sequence = 4587776
2344
+ add_intermediate_sequence = 4587777
2345
+ add_other_sequence = 4587778
2346
+ add_power = 4587780
2347
+ viewing_distance = 4587782
2348
+ visual_acuity_type_code_sequence = 4587809
2349
+ visual_acuity_right_eye_sequence = 4587810
2350
+ visual_acuity_left_eye_sequence = 4587811
2351
+ visual_acuity_both_eyes_open_sequence = 4587812
2352
+ viewing_distance_type = 4587813
2353
+ visual_acuity_modifiers = 4587829
2354
+ decimal_visual_acuity = 4587831
2355
+ optotype_detailed_definition = 4587833
2356
+ referenced_refractive_measurements_sequence = 4587845
2357
+ sphere_power = 4587846
2358
+ cylinder_power = 4587847
2359
+ corneal_topography_surface = 4588033
2360
+ corneal_vertex_location = 4588034
2361
+ pupil_centroid_x_coordinate = 4588035
2362
+ pupil_centroid_y_coordinate = 4588036
2363
+ equivalent_pupil_radius = 4588037
2364
+ corneal_topography_map_type_code_sequence = 4588039
2365
+ vertices_of_the_outline_of_pupil = 4588040
2366
+ corneal_topography_mapping_normals_sequence = 4588048
2367
+ maximum_corneal_curvature_sequence = 4588049
2368
+ maximum_corneal_curvature = 4588050
2369
+ maximum_corneal_curvature_location = 4588051
2370
+ minimum_keratometric_sequence = 4588053
2371
+ simulated_keratometric_cylinder_sequence = 4588056
2372
+ average_corneal_power = 4588064
2373
+ corneal_i_s_value = 4588068
2374
+ analyzed_area = 4588071
2375
+ surface_regularity_index = 4588080
2376
+ surface_asymmetry_index = 4588082
2377
+ corneal_eccentricity_index = 4588084
2378
+ keratoconus_prediction_index = 4588086
2379
+ decimal_potential_visual_acuity = 4588088
2380
+ corneal_topography_map_quality_evaluation = 4588098
2381
+ source_image_corneal_processed_data_sequence = 4588100
2382
+ corneal_point_location = 4588103
2383
+ corneal_point_estimated = 4588104
2384
+ axial_power = 4588105
2385
+ tangential_power = 4588112
2386
+ refractive_power = 4588113
2387
+ relative_elevation = 4588114
2388
+ corneal_wavefront = 4588115
2389
+ imaged_volume_width = 4718593
2390
+ imaged_volume_height = 4718594
2391
+ imaged_volume_depth = 4718595
2392
+ total_pixel_matrix_columns = 4718598
2393
+ total_pixel_matrix_rows = 4718599
2394
+ total_pixel_matrix_origin_sequence = 4718600
2395
+ specimen_label_in_image = 4718608
2396
+ focus_method = 4718609
2397
+ extended_depth_of_field = 4718610
2398
+ number_of_focal_planes = 4718611
2399
+ distance_between_focal_planes = 4718612
2400
+ recommended_absent_pixel_cielab_value = 4718613
2401
+ illuminator_type_code_sequence = 4718848
2402
+ image_orientation__slide_ = 4718850
2403
+ optical_path_sequence = 4718853
2404
+ optical_path_identifier = 4718854
2405
+ optical_path_description = 4718855
2406
+ illumination_color_code_sequence = 4718856
2407
+ specimen_reference_sequence = 4718864
2408
+ condenser_lens_power = 4718865
2409
+ objective_lens_power = 4718866
2410
+ objective_lens_numerical_aperture = 4718867
2411
+ palette_color_lookup_table_sequence = 4718880
2412
+ referenced_image_navigation_sequence = 4719104
2413
+ top_left_hand_corner_of_localizer_area = 4719105
2414
+ bottom_right_hand_corner_of_localizer_area = 4719106
2415
+ optical_path_identification_sequence = 4719111
2416
+ plane_position__slide__sequence = 4719130
2417
+ column_position_in_total_image_pixel_matrix = 4719134
2418
+ row_position_in_total_image_pixel_matrix = 4719135
2419
+ pixel_origin_interpretation = 4719361
2420
+ calibration_image = 5242884
2421
+ device_sequence = 5242896
2422
+ container_component_type_code_sequence = 5242898
2423
+ container_component_thickness = 5242899
2424
+ device_length = 5242900
2425
+ container_component_width = 5242901
2426
+ device_diameter = 5242902
2427
+ device_diameter_units = 5242903
2428
+ device_volume = 5242904
2429
+ inter_marker_distance = 5242905
2430
+ container_component_material = 5242906
2431
+ container_component_id = 5242907
2432
+ container_component_length = 5242908
2433
+ container_component_diameter = 5242909
2434
+ container_component_description = 5242910
2435
+ device_description = 5242912
2436
+ contrast_bolus_ingredient_percent_by_volume = 5373953
2437
+ oct_focal_distance = 5373954
2438
+ beam_spot_size = 5373955
2439
+ effective_refractive_index = 5373956
2440
+ oct_acquisition_domain = 5373958
2441
+ oct_optical_center_wavelength = 5373959
2442
+ axial_resolution = 5373960
2443
+ ranging_depth = 5373961
2444
+ a_line_rate = 5373969
2445
+ a_lines_per_frame = 5373970
2446
+ catheter_rotational_rate = 5373971
2447
+ a_line_pixel_spacing = 5373972
2448
+ mode_of_percutaneous_access_sequence = 5373974
2449
+ intravascular_oct_frame_type_sequence = 5373989
2450
+ oct_z_offset_applied = 5373990
2451
+ intravascular_frame_content_sequence = 5373991
2452
+ intravascular_longitudinal_distance = 5373992
2453
+ intravascular_oct_frame_content_sequence = 5373993
2454
+ oct_z_offset_correction = 5374000
2455
+ catheter_direction_of_rotation = 5374001
2456
+ seam_line_location = 5374003
2457
+ first_a_line_location = 5374004
2458
+ seam_line_index = 5374006
2459
+ number_of_padded_a_lines = 5374008
2460
+ interpolation_type = 5374009
2461
+ refractive_index_applied = 5374010
2462
+ energy_window_vector = 5505040
2463
+ number_of_energy_windows = 5505041
2464
+ energy_window_information_sequence = 5505042
2465
+ energy_window_range_sequence = 5505043
2466
+ energy_window_lower_limit = 5505044
2467
+ energy_window_upper_limit = 5505045
2468
+ radiopharmaceutical_information_sequence = 5505046
2469
+ residual_syringe_counts = 5505047
2470
+ energy_window_name = 5505048
2471
+ detector_vector = 5505056
2472
+ number_of_detectors = 5505057
2473
+ detector_information_sequence = 5505058
2474
+ phase_vector = 5505072
2475
+ number_of_phases = 5505073
2476
+ phase_information_sequence = 5505074
2477
+ number_of_frames_in_phase = 5505075
2478
+ phase_delay = 5505078
2479
+ pause_between_frames = 5505080
2480
+ phase_description = 5505081
2481
+ rotation_vector = 5505104
2482
+ number_of_rotations = 5505105
2483
+ rotation_information_sequence = 5505106
2484
+ number_of_frames_in_rotation = 5505107
2485
+ r_r_interval_vector = 5505120
2486
+ number_of_r_r_intervals = 5505121
2487
+ gated_information_sequence = 5505122
2488
+ data_information_sequence = 5505123
2489
+ time_slot_vector = 5505136
2490
+ number_of_time_slots = 5505137
2491
+ time_slot_information_sequence = 5505138
2492
+ time_slot_time = 5505139
2493
+ slice_vector = 5505152
2494
+ number_of_slices = 5505153
2495
+ angular_view_vector = 5505168
2496
+ time_slice_vector = 5505280
2497
+ number_of_time_slices = 5505281
2498
+ start_angle = 5505536
2499
+ type_of_detector_motion = 5505538
2500
+ trigger_vector = 5505552
2501
+ number_of_triggers_in_phase = 5505553
2502
+ view_code_sequence = 5505568
2503
+ view_modifier_code_sequence = 5505570
2504
+ radionuclide_code_sequence = 5505792
2505
+ administration_route_code_sequence = 5505794
2506
+ radiopharmaceutical_code_sequence = 5505796
2507
+ calibration_data_sequence = 5505798
2508
+ energy_window_number = 5505800
2509
+ image_id = 5506048
2510
+ patient_orientation_code_sequence = 5506064
2511
+ patient_orientation_modifier_code_sequence = 5506066
2512
+ patient_gantry_relationship_code_sequence = 5506068
2513
+ slice_progression_direction = 5506304
2514
+ scan_progression_direction = 5506305
2515
+ series_type = 5509120
2516
+ units = 5509121
2517
+ counts_source = 5509122
2518
+ reprojection_method = 5509124
2519
+ suv_type = 5509126
2520
+ randoms_correction_method = 5509376
2521
+ attenuation_correction_method = 5509377
2522
+ decay_correction = 5509378
2523
+ reconstruction_method = 5509379
2524
+ detector_lines_of_response_used = 5509380
2525
+ scatter_correction_method = 5509381
2526
+ axial_acceptance = 5509632
2527
+ axial_mash = 5509633
2528
+ transverse_mash = 5509634
2529
+ detector_element_size = 5509635
2530
+ coincidence_window_width = 5509648
2531
+ secondary_counts_type = 5509664
2532
+ frame_reference_time = 5509888
2533
+ primary__prompts__counts_accumulated = 5509904
2534
+ secondary_counts_accumulated = 5509905
2535
+ slice_sensitivity_factor = 5509920
2536
+ decay_factor = 5509921
2537
+ dose_calibration_factor = 5509922
2538
+ scatter_fraction_factor = 5509923
2539
+ dead_time_factor = 5509924
2540
+ image_index = 5509936
2541
+ counts_included = 5510144
2542
+ dead_time_correction_flag = 5510145
2543
+ histogram_sequence = 6303744
2544
+ histogram_number_of_bins = 6303746
2545
+ histogram_first_bin_value = 6303748
2546
+ histogram_last_bin_value = 6303750
2547
+ histogram_bin_width = 6303752
2548
+ histogram_explanation = 6303760
2549
+ histogram_data = 6303776
2550
+ segmentation_type = 6422529
2551
+ segment_sequence = 6422530
2552
+ segmented_property_category_code_sequence = 6422531
2553
+ segment_number = 6422532
2554
+ segment_label = 6422533
2555
+ segment_description = 6422534
2556
+ segment_algorithm_type = 6422536
2557
+ segment_algorithm_name = 6422537
2558
+ segment_identification_sequence = 6422538
2559
+ referenced_segment_number = 6422539
2560
+ recommended_display_grayscale_value = 6422540
2561
+ recommended_display_cielab_value = 6422541
2562
+ maximum_fractional_value = 6422542
2563
+ segmented_property_type_code_sequence = 6422543
2564
+ segmentation_fractional_type = 6422544
2565
+ segmented_property_type_modifier_code_sequence = 6422545
2566
+ used_segments_sequence = 6422546
2567
+ tracking_id = 6422560
2568
+ tracking_uid = 6422561
2569
+ deformable_registration_sequence = 6553602
2570
+ source_frame_of_reference_uid = 6553603
2571
+ deformable_registration_grid_sequence = 6553605
2572
+ grid_dimensions = 6553607
2573
+ grid_resolution = 6553608
2574
+ vector_grid_data = 6553609
2575
+ pre_deformation_matrix_registration_sequence = 6553615
2576
+ post_deformation_matrix_registration_sequence = 6553616
2577
+ number_of_surfaces = 6684673
2578
+ surface_sequence = 6684674
2579
+ surface_number = 6684675
2580
+ surface_comments = 6684676
2581
+ surface_processing = 6684681
2582
+ surface_processing_ratio = 6684682
2583
+ surface_processing_description = 6684683
2584
+ recommended_presentation_opacity = 6684684
2585
+ recommended_presentation_type = 6684685
2586
+ finite_volume = 6684686
2587
+ manifold = 6684688
2588
+ surface_points_sequence = 6684689
2589
+ surface_points_normals_sequence = 6684690
2590
+ surface_mesh_primitives_sequence = 6684691
2591
+ number_of_surface_points = 6684693
2592
+ point_coordinates_data = 6684694
2593
+ point_position_accuracy = 6684695
2594
+ mean_point_distance = 6684696
2595
+ maximum_point_distance = 6684697
2596
+ points_bounding_box_coordinates = 6684698
2597
+ axis_of_rotation = 6684699
2598
+ center_of_rotation = 6684700
2599
+ number_of_vectors = 6684702
2600
+ vector_dimensionality = 6684703
2601
+ vector_accuracy = 6684704
2602
+ vector_coordinate_data = 6684705
2603
+ triangle_point_index_list = 6684707
2604
+ edge_point_index_list = 6684708
2605
+ vertex_point_index_list = 6684709
2606
+ triangle_strip_sequence = 6684710
2607
+ triangle_fan_sequence = 6684711
2608
+ line_sequence = 6684712
2609
+ primitive_point_index_list = 6684713
2610
+ surface_count = 6684714
2611
+ referenced_surface_sequence = 6684715
2612
+ referenced_surface_number = 6684716
2613
+ segment_surface_generation_algorithm_identification_sequence = 6684717
2614
+ segment_surface_source_instance_sequence = 6684718
2615
+ algorithm_family_code_sequence = 6684719
2616
+ algorithm_name_code_sequence = 6684720
2617
+ algorithm_version = 6684721
2618
+ algorithm_parameters = 6684722
2619
+ facet_sequence = 6684724
2620
+ surface_processing_algorithm_identification_sequence = 6684725
2621
+ algorithm_name = 6684726
2622
+ recommended_point_radius = 6684727
2623
+ recommended_line_thickness = 6684728
2624
+ long_primitive_point_index_list = 6684736
2625
+ long_triangle_point_index_list = 6684737
2626
+ long_edge_point_index_list = 6684738
2627
+ long_vertex_point_index_list = 6684739
2628
+ track_set_sequence = 6684929
2629
+ track_sequence = 6684930
2630
+ recommended_display_cielab_value_list = 6684931
2631
+ tracking_algorithm_identification_sequence = 6684932
2632
+ track_set_number = 6684933
2633
+ track_set_label = 6684934
2634
+ track_set_description = 6684935
2635
+ track_set_anatomical_type_code_sequence = 6684936
2636
+ measurements_sequence = 6684961
2637
+ track_set_statistics_sequence = 6684964
2638
+ floating_point_values = 6684965
2639
+ track_point_index_list = 6684969
2640
+ track_statistics_sequence = 6684976
2641
+ measurement_values_sequence = 6684978
2642
+ diffusion_acquisition_code_sequence = 6684979
2643
+ diffusion_model_code_sequence = 6684980
2644
+ implant_size = 6840848
2645
+ implant_template_version = 6840865
2646
+ replaced_implant_template_sequence = 6840866
2647
+ implant_type = 6840867
2648
+ derivation_implant_template_sequence = 6840868
2649
+ original_implant_template_sequence = 6840869
2650
+ effective_datetime = 6840870
2651
+ implant_target_anatomy_sequence = 6840880
2652
+ information_from_manufacturer_sequence = 6840928
2653
+ notification_from_manufacturer_sequence = 6840933
2654
+ information_issue_datetime = 6840944
2655
+ information_summary = 6840960
2656
+ implant_regulatory_disapproval_code_sequence = 6840992
2657
+ overall_template_spatial_tolerance = 6840997
2658
+ hpgl_document_sequence = 6841024
2659
+ hpgl_document_id = 6841040
2660
+ hpgl_document_label = 6841045
2661
+ view_orientation_code_sequence = 6841056
2662
+ view_orientation_modifier = 6841072
2663
+ hpgl_document_scaling = 6841074
2664
+ hpgl_document = 6841088
2665
+ hpgl_contour_pen_number = 6841104
2666
+ hpgl_pen_sequence = 6841120
2667
+ hpgl_pen_number = 6841136
2668
+ hpgl_pen_label = 6841152
2669
+ hpgl_pen_description = 6841157
2670
+ recommended_rotation_point = 6841158
2671
+ bounding_rectangle = 6841159
2672
+ implant_template_3d_model_surface_number = 6841168
2673
+ surface_model_description_sequence = 6841184
2674
+ surface_model_label = 6841216
2675
+ surface_model_scaling_factor = 6841232
2676
+ materials_code_sequence = 6841248
2677
+ coating_materials_code_sequence = 6841252
2678
+ implant_type_code_sequence = 6841256
2679
+ fixation_method_code_sequence = 6841260
2680
+ mating_feature_sets_sequence = 6841264
2681
+ mating_feature_set_id = 6841280
2682
+ mating_feature_set_label = 6841296
2683
+ mating_feature_sequence = 6841312
2684
+ mating_feature_id = 6841328
2685
+ mating_feature_degree_of_freedom_sequence = 6841344
2686
+ degree_of_freedom_id = 6841360
2687
+ degree_of_freedom_type = 6841376
2688
+ tag_2d_mating_feature_coordinates_sequence = 6841392
2689
+ referenced_hpgl_document_id = 6841408
2690
+ tag_2d_mating_point = 6841424
2691
+ tag_2d_mating_axes = 6841440
2692
+ tag_2d_degree_of_freedom_sequence = 6841456
2693
+ tag_3d_degree_of_freedom_axis = 6841488
2694
+ range_of_freedom = 6841504
2695
+ tag_3d_mating_point = 6841536
2696
+ tag_3d_mating_axes = 6841552
2697
+ tag_2d_degree_of_freedom_axis = 6841584
2698
+ planning_landmark_point_sequence = 6841600
2699
+ planning_landmark_line_sequence = 6841616
2700
+ planning_landmark_plane_sequence = 6841632
2701
+ planning_landmark_id = 6841648
2702
+ planning_landmark_description = 6841664
2703
+ planning_landmark_identification_code_sequence = 6841669
2704
+ tag_2d_point_coordinates_sequence = 6841680
2705
+ tag_2d_point_coordinates = 6841696
2706
+ tag_3d_point_coordinates = 6841744
2707
+ tag_2d_line_coordinates_sequence = 6841760
2708
+ tag_2d_line_coordinates = 6841776
2709
+ tag_3d_line_coordinates = 6841808
2710
+ tag_2d_plane_coordinates_sequence = 6841824
2711
+ tag_2d_plane_intersection = 6841840
2712
+ tag_3d_plane_origin = 6841872
2713
+ tag_3d_plane_normal = 6841888
2714
+ graphic_annotation_sequence = 7340033
2715
+ graphic_layer = 7340034
2716
+ bounding_box_annotation_units = 7340035
2717
+ anchor_point_annotation_units = 7340036
2718
+ graphic_annotation_units = 7340037
2719
+ unformatted_text_value = 7340038
2720
+ text_object_sequence = 7340040
2721
+ graphic_object_sequence = 7340041
2722
+ bounding_box_top_left_hand_corner = 7340048
2723
+ bounding_box_bottom_right_hand_corner = 7340049
2724
+ bounding_box_text_horizontal_justification = 7340050
2725
+ anchor_point = 7340052
2726
+ anchor_point_visibility = 7340053
2727
+ graphic_dimensions = 7340064
2728
+ number_of_graphic_points = 7340065
2729
+ graphic_data = 7340066
2730
+ graphic_type = 7340067
2731
+ graphic_filled = 7340068
2732
+ image_rotation__retired_ = 7340096
2733
+ image_horizontal_flip = 7340097
2734
+ image_rotation = 7340098
2735
+ displayed_area_top_left_hand_corner__trial_ = 7340112
2736
+ displayed_area_bottom_right_hand_corner__trial_ = 7340113
2737
+ displayed_area_top_left_hand_corner = 7340114
2738
+ displayed_area_bottom_right_hand_corner = 7340115
2739
+ displayed_area_selection_sequence = 7340122
2740
+ graphic_layer_sequence = 7340128
2741
+ graphic_layer_order = 7340130
2742
+ graphic_layer_recommended_display_grayscale_value = 7340134
2743
+ graphic_layer_recommended_display_rgb_value = 7340135
2744
+ graphic_layer_description = 7340136
2745
+ content_label = 7340160
2746
+ content_description = 7340161
2747
+ presentation_creation_date = 7340162
2748
+ presentation_creation_time = 7340163
2749
+ content_creator_s_name = 7340164
2750
+ content_creator_s_identification_code_sequence = 7340166
2751
+ alternate_content_description_sequence = 7340167
2752
+ presentation_size_mode = 7340288
2753
+ presentation_pixel_spacing = 7340289
2754
+ presentation_pixel_aspect_ratio = 7340290
2755
+ presentation_pixel_magnification_ratio = 7340291
2756
+ graphic_group_label = 7340551
2757
+ graphic_group_description = 7340552
2758
+ compound_graphic_sequence = 7340553
2759
+ compound_graphic_instance_id = 7340582
2760
+ font_name = 7340583
2761
+ font_name_type = 7340584
2762
+ css_font_name = 7340585
2763
+ rotation_angle = 7340592
2764
+ text_style_sequence = 7340593
2765
+ line_style_sequence = 7340594
2766
+ fill_style_sequence = 7340595
2767
+ graphic_group_sequence = 7340596
2768
+ text_color_cielab_value = 7340609
2769
+ horizontal_alignment = 7340610
2770
+ vertical_alignment = 7340611
2771
+ shadow_style = 7340612
2772
+ shadow_offset_x = 7340613
2773
+ shadow_offset_y = 7340614
2774
+ shadow_color_cielab_value = 7340615
2775
+ underlined = 7340616
2776
+ bold = 7340617
2777
+ italic = 7340624
2778
+ pattern_on_color_cielab_value = 7340625
2779
+ pattern_off_color_cielab_value = 7340626
2780
+ line_thickness = 7340627
2781
+ line_dashing_style = 7340628
2782
+ line_pattern = 7340629
2783
+ fill_pattern = 7340630
2784
+ fill_mode = 7340631
2785
+ shadow_opacity = 7340632
2786
+ gap_length = 7340641
2787
+ diameter_of_visibility = 7340642
2788
+ rotation_point = 7340659
2789
+ tick_alignment = 7340660
2790
+ show_tick_label = 7340664
2791
+ tick_label_alignment = 7340665
2792
+ compound_graphic_units = 7340674
2793
+ pattern_on_opacity = 7340676
2794
+ pattern_off_opacity = 7340677
2795
+ major_ticks_sequence = 7340679
2796
+ tick_position = 7340680
2797
+ tick_label = 7340681
2798
+ compound_graphic_type = 7340692
2799
+ graphic_group_id = 7340693
2800
+ shape_type = 7340806
2801
+ registration_sequence = 7340808
2802
+ matrix_registration_sequence = 7340809
2803
+ matrix_sequence = 7340810
2804
+ frame_of_reference_to_displayed_coordinate_system_transformation_matrix = 7340811
2805
+ frame_of_reference_transformation_matrix_type = 7340812
2806
+ registration_type_code_sequence = 7340813
2807
+ fiducial_description = 7340815
2808
+ fiducial_identifier = 7340816
2809
+ fiducial_identifier_code_sequence = 7340817
2810
+ contour_uncertainty_radius = 7340818
2811
+ used_fiducials_sequence = 7340820
2812
+ graphic_coordinates_data_sequence = 7340824
2813
+ fiducial_uid = 7340826
2814
+ fiducial_set_sequence = 7340828
2815
+ fiducial_sequence = 7340830
2816
+ graphic_layer_recommended_display_cielab_value = 7341057
2817
+ blending_sequence = 7341058
2818
+ relative_opacity = 7341059
2819
+ referenced_spatial_registration_sequence = 7341060
2820
+ blending_position = 7341061
2821
+ presentation_display_collection_uid = 7344385
2822
+ presentation_sequence_collection_uid = 7344386
2823
+ presentation_sequence_position_index = 7344387
2824
+ rendered_image_reference_sequence = 7344388
2825
+ volumetric_presentation_state_input_sequence = 7344641
2826
+ presentation_input_type = 7344642
2827
+ input_sequence_position_index = 7344643
2828
+ crop = 7344644
2829
+ cropping_specification_index = 7344645
2830
+ compositing_method = 7344646
2831
+ volumetric_presentation_input_number = 7344647
2832
+ image_volume_geometry = 7344648
2833
+ volume_cropping_sequence = 7344897
2834
+ volume_cropping_method = 7344898
2835
+ bounding_box_crop = 7344899
2836
+ oblique_cropping_plane_sequence = 7344900
2837
+ plane = 7344901
2838
+ plane_normal = 7344902
2839
+ cropping_specification_number = 7344905
2840
+ multi_planar_reconstruction_style = 7345409
2841
+ mpr_thickness_type = 7345410
2842
+ mpr_slab_thickness = 7345411
2843
+ mpr_top_left_hand_corner = 7345413
2844
+ mpr_view_width_direction = 7345415
2845
+ mpr_view_width = 7345416
2846
+ number_of_volumetric_curve_points = 7345420
2847
+ volumetric_curve_points = 7345421
2848
+ mpr_view_height_direction = 7345425
2849
+ mpr_view_height = 7345426
2850
+ presentation_state_classification_component_sequence = 7346177
2851
+ component_type = 7346178
2852
+ component_input_sequence = 7346179
2853
+ volumetric_presentation_input_index = 7346180
2854
+ presentation_state_compositor_component_sequence = 7346181
2855
+ weighting_transfer_function_sequence = 7346182
2856
+ weighting_lookup_table_descriptor = 7346183
2857
+ weighting_lookup_table_data = 7346184
2858
+ volumetric_annotation_sequence = 7346433
2859
+ referenced_structured_context_sequence = 7346435
2860
+ referenced_content_item = 7346436
2861
+ volumetric_presentation_input_annotation_sequence = 7346437
2862
+ annotation_clipping = 7346439
2863
+ presentation_animation_style = 7346689
2864
+ recommended_animation_rate = 7346691
2865
+ animation_curve_sequence = 7346692
2866
+ animation_step_size = 7346693
2867
+ hanging_protocol_name = 7471106
2868
+ hanging_protocol_description = 7471108
2869
+ hanging_protocol_level = 7471110
2870
+ hanging_protocol_creator = 7471112
2871
+ hanging_protocol_creation_datetime = 7471114
2872
+ hanging_protocol_definition_sequence = 7471116
2873
+ hanging_protocol_user_identification_code_sequence = 7471118
2874
+ hanging_protocol_user_group_name = 7471120
2875
+ source_hanging_protocol_sequence = 7471122
2876
+ number_of_priors_referenced = 7471124
2877
+ image_sets_sequence = 7471136
2878
+ image_set_selector_sequence = 7471138
2879
+ image_set_selector_usage_flag = 7471140
2880
+ selector_attribute = 7471142
2881
+ selector_value_number = 7471144
2882
+ time_based_image_sets_sequence = 7471152
2883
+ image_set_number = 7471154
2884
+ image_set_selector_category = 7471156
2885
+ relative_time = 7471160
2886
+ relative_time_units = 7471162
2887
+ abstract_prior_value = 7471164
2888
+ abstract_prior_code_sequence = 7471166
2889
+ image_set_label = 7471168
2890
+ selector_attribute_vr = 7471184
2891
+ selector_sequence_pointer = 7471186
2892
+ selector_sequence_pointer_private_creator = 7471188
2893
+ selector_attribute_private_creator = 7471190
2894
+ selector_ae_value = 7471198
2895
+ selector_as_value = 7471199
2896
+ selector_at_value = 7471200
2897
+ selector_da_value = 7471201
2898
+ selector_cs_value = 7471202
2899
+ selector_dt_value = 7471203
2900
+ selector_is_value = 7471204
2901
+ selector_ob_value = 7471205
2902
+ selector_lo_value = 7471206
2903
+ selector_of_value = 7471207
2904
+ selector_lt_value = 7471208
2905
+ selector_ow_value = 7471209
2906
+ selector_pn_value = 7471210
2907
+ selector_tm_value = 7471211
2908
+ selector_sh_value = 7471212
2909
+ selector_un_value = 7471213
2910
+ selector_st_value = 7471214
2911
+ selector_uc_value = 7471215
2912
+ selector_ut_value = 7471216
2913
+ selector_ur_value = 7471217
2914
+ selector_ds_value = 7471218
2915
+ selector_od_value = 7471219
2916
+ selector_fd_value = 7471220
2917
+ selector_ol_value = 7471221
2918
+ selector_fl_value = 7471222
2919
+ selector_ul_value = 7471224
2920
+ selector_us_value = 7471226
2921
+ selector_sl_value = 7471228
2922
+ selector_ss_value = 7471230
2923
+ selector_ui_value = 7471231
2924
+ selector_code_sequence_value = 7471232
2925
+ number_of_screens = 7471360
2926
+ nominal_screen_definition_sequence = 7471362
2927
+ number_of_vertical_pixels = 7471364
2928
+ number_of_horizontal_pixels = 7471366
2929
+ display_environment_spatial_position = 7471368
2930
+ screen_minimum_grayscale_bit_depth = 7471370
2931
+ screen_minimum_color_bit_depth = 7471372
2932
+ application_maximum_repaint_time = 7471374
2933
+ display_sets_sequence = 7471616
2934
+ display_set_number = 7471618
2935
+ display_set_label = 7471619
2936
+ display_set_presentation_group = 7471620
2937
+ display_set_presentation_group_description = 7471622
2938
+ partial_data_display_handling = 7471624
2939
+ synchronized_scrolling_sequence = 7471632
2940
+ display_set_scrolling_group = 7471634
2941
+ navigation_indicator_sequence = 7471636
2942
+ navigation_display_set = 7471638
2943
+ reference_display_sets = 7471640
2944
+ image_boxes_sequence = 7471872
2945
+ image_box_number = 7471874
2946
+ image_box_layout_type = 7471876
2947
+ image_box_tile_horizontal_dimension = 7471878
2948
+ image_box_tile_vertical_dimension = 7471880
2949
+ image_box_scroll_direction = 7471888
2950
+ image_box_small_scroll_type = 7471890
2951
+ image_box_small_scroll_amount = 7471892
2952
+ image_box_large_scroll_type = 7471894
2953
+ image_box_large_scroll_amount = 7471896
2954
+ image_box_overlap_priority = 7471904
2955
+ cine_relative_to_real_time = 7471920
2956
+ filter_operations_sequence = 7472128
2957
+ filter_by_category = 7472130
2958
+ filter_by_attribute_presence = 7472132
2959
+ filter_by_operator = 7472134
2960
+ structured_display_background_cielab_value = 7472160
2961
+ empty_image_box_cielab_value = 7472161
2962
+ structured_display_image_box_sequence = 7472162
2963
+ structured_display_text_box_sequence = 7472164
2964
+ referenced_first_frame_sequence = 7472167
2965
+ image_box_synchronization_sequence = 7472176
2966
+ synchronized_image_box_list = 7472178
2967
+ type_of_synchronization = 7472180
2968
+ blending_operation_type = 7472384
2969
+ reformatting_operation_type = 7472400
2970
+ reformatting_thickness = 7472402
2971
+ reformatting_interval = 7472404
2972
+ reformatting_operation_initial_view_direction = 7472406
2973
+ tag_3d_rendering_type = 7472416
2974
+ sorting_operations_sequence = 7472640
2975
+ sort_by_category = 7472642
2976
+ sorting_direction = 7472644
2977
+ display_set_patient_orientation = 7472896
2978
+ voi_type = 7472898
2979
+ pseudo_color_type = 7472900
2980
+ pseudo_color_palette_instance_reference_sequence = 7472901
2981
+ show_grayscale_inverted = 7472902
2982
+ show_image_true_size_flag = 7472912
2983
+ show_graphic_annotation_flag = 7472914
2984
+ show_patient_demographics_flag = 7472916
2985
+ show_acquisition_techniques_flag = 7472918
2986
+ display_set_horizontal_justification = 7472919
2987
+ display_set_vertical_justification = 7472920
2988
+ continuation_start_meterset = 7602464
2989
+ continuation_end_meterset = 7602465
2990
+ procedure_step_state = 7606272
2991
+ procedure_step_progress_information_sequence = 7606274
2992
+ procedure_step_progress = 7606276
2993
+ procedure_step_progress_description = 7606278
2994
+ procedure_step_communications_uri_sequence = 7606280
2995
+ contact_uri = 7606282
2996
+ contact_display_name = 7606284
2997
+ procedure_step_discontinuation_reason_code_sequence = 7606286
2998
+ beam_task_sequence = 7606304
2999
+ beam_task_type = 7606306
3000
+ beam_order_index__trial_ = 7606308
3001
+ autosequence_flag = 7606309
3002
+ table_top_vertical_adjusted_position = 7606310
3003
+ table_top_longitudinal_adjusted_position = 7606311
3004
+ table_top_lateral_adjusted_position = 7606312
3005
+ patient_support_adjusted_angle = 7606314
3006
+ table_top_eccentric_adjusted_angle = 7606315
3007
+ table_top_pitch_adjusted_angle = 7606316
3008
+ table_top_roll_adjusted_angle = 7606317
3009
+ delivery_verification_image_sequence = 7606320
3010
+ verification_image_timing = 7606322
3011
+ double_exposure_flag = 7606324
3012
+ double_exposure_ordering = 7606326
3013
+ double_exposure_meterset__trial_ = 7606328
3014
+ double_exposure_field_delta__trial_ = 7606330
3015
+ related_reference_rt_image_sequence = 7606336
3016
+ general_machine_verification_sequence = 7606338
3017
+ conventional_machine_verification_sequence = 7606340
3018
+ ion_machine_verification_sequence = 7606342
3019
+ failed_attributes_sequence = 7606344
3020
+ overridden_attributes_sequence = 7606346
3021
+ conventional_control_point_verification_sequence = 7606348
3022
+ ion_control_point_verification_sequence = 7606350
3023
+ attribute_occurrence_sequence = 7606352
3024
+ attribute_occurrence_pointer = 7606354
3025
+ attribute_item_selector = 7606356
3026
+ attribute_occurrence_private_creator = 7606358
3027
+ selector_sequence_pointer_items = 7606359
3028
+ scheduled_procedure_step_priority = 7606784
3029
+ worklist_label = 7606786
3030
+ procedure_step_label = 7606788
3031
+ scheduled_processing_parameters_sequence = 7606800
3032
+ performed_processing_parameters_sequence = 7606802
3033
+ unified_procedure_step_performed_procedure_sequence = 7606806
3034
+ related_procedure_step_sequence = 7606816
3035
+ procedure_step_relationship_type = 7606818
3036
+ replaced_procedure_step_sequence = 7606820
3037
+ deletion_lock = 7606832
3038
+ receiving_ae = 7606836
3039
+ requesting_ae = 7606838
3040
+ reason_for_cancellation = 7606840
3041
+ scp_status = 7606850
3042
+ subscription_list_status = 7606852
3043
+ unified_procedure_step_list_status = 7606854
3044
+ beam_order_index = 7607076
3045
+ double_exposure_meterset = 7607096
3046
+ double_exposure_field_delta = 7607098
3047
+ brachy_task_sequence = 7607297
3048
+ continuation_start_total_reference_air_kerma = 7607298
3049
+ continuation_end_total_reference_air_kerma = 7607299
3050
+ continuation_pulse_number = 7607300
3051
+ channel_delivery_order_sequence = 7607301
3052
+ referenced_channel_number = 7607302
3053
+ start_cumulative_time_weight = 7607303
3054
+ end_cumulative_time_weight = 7607304
3055
+ omitted_channel_sequence = 7607305
3056
+ reason_for_channel_omission = 7607306
3057
+ reason_for_channel_omission_description = 7607307
3058
+ channel_delivery_order_index = 7607308
3059
+ channel_delivery_continuation_sequence = 7607309
3060
+ omitted_application_setup_sequence = 7607310
3061
+ implant_assembly_template_name = 7733249
3062
+ implant_assembly_template_issuer = 7733251
3063
+ implant_assembly_template_version = 7733254
3064
+ replaced_implant_assembly_template_sequence = 7733256
3065
+ implant_assembly_template_type = 7733258
3066
+ original_implant_assembly_template_sequence = 7733260
3067
+ derivation_implant_assembly_template_sequence = 7733262
3068
+ implant_assembly_template_target_anatomy_sequence = 7733264
3069
+ procedure_type_code_sequence = 7733280
3070
+ surgical_technique = 7733296
3071
+ component_types_sequence = 7733298
3072
+ component_type_code_sequence = 7733300
3073
+ exclusive_component_type = 7733302
3074
+ mandatory_component_type = 7733304
3075
+ component_sequence = 7733312
3076
+ component_id = 7733333
3077
+ component_assembly_sequence = 7733344
3078
+ component_1_referenced_id = 7733360
3079
+ component_1_referenced_mating_feature_set_id = 7733376
3080
+ component_1_referenced_mating_feature_id = 7733392
3081
+ component_2_referenced_id = 7733408
3082
+ component_2_referenced_mating_feature_set_id = 7733424
3083
+ component_2_referenced_mating_feature_id = 7733440
3084
+ implant_template_group_name = 7864321
3085
+ implant_template_group_description = 7864336
3086
+ implant_template_group_issuer = 7864352
3087
+ implant_template_group_version = 7864356
3088
+ replaced_implant_template_group_sequence = 7864358
3089
+ implant_template_group_target_anatomy_sequence = 7864360
3090
+ implant_template_group_members_sequence = 7864362
3091
+ implant_template_group_member_id = 7864366
3092
+ tag_3d_implant_template_group_member_matching_point = 7864400
3093
+ tag_3d_implant_template_group_member_matching_axes = 7864416
3094
+ implant_template_group_member_matching_2d_coordinates_sequence = 7864432
3095
+ tag_2d_implant_template_group_member_matching_point = 7864464
3096
+ tag_2d_implant_template_group_member_matching_axes = 7864480
3097
+ implant_template_group_variation_dimension_sequence = 7864496
3098
+ implant_template_group_variation_dimension_name = 7864498
3099
+ implant_template_group_variation_dimension_rank_sequence = 7864500
3100
+ referenced_implant_template_group_member_id = 7864502
3101
+ implant_template_group_variation_dimension_rank = 7864504
3102
+ surface_scan_acquisition_type_code_sequence = 8388609
3103
+ surface_scan_mode_code_sequence = 8388610
3104
+ registration_method_code_sequence = 8388611
3105
+ shot_duration_time = 8388612
3106
+ shot_offset_time = 8388613
3107
+ surface_point_presentation_value_data = 8388614
3108
+ surface_point_color_cielab_value_data = 8388615
3109
+ uv_mapping_sequence = 8388616
3110
+ texture_label = 8388617
3111
+ u_value_data = 8388624
3112
+ v_value_data = 8388625
3113
+ referenced_texture_sequence = 8388626
3114
+ referenced_surface_data_sequence = 8388627
3115
+ assessment_summary = 8519681
3116
+ assessment_summary_description = 8519683
3117
+ assessed_sop_instance_sequence = 8519684
3118
+ referenced_comparison_sop_instance_sequence = 8519685
3119
+ number_of_assessment_observations = 8519686
3120
+ assessment_observations_sequence = 8519687
3121
+ observation_significance = 8519688
3122
+ observation_description = 8519690
3123
+ structured_constraint_observation_sequence = 8519692
3124
+ assessed_attribute_value_sequence = 8519696
3125
+ assessment_set_id = 8519702
3126
+ assessment_requester_sequence = 8519703
3127
+ selector_attribute_name = 8519704
3128
+ selector_attribute_keyword = 8519705
3129
+ assessment_type_code_sequence = 8519713
3130
+ observation_basis_code_sequence = 8519714
3131
+ assessment_label = 8519715
3132
+ constraint_type = 8519730
3133
+ specification_selection_guidance = 8519731
3134
+ constraint_value_sequence = 8519732
3135
+ recommended_default_value_sequence = 8519733
3136
+ constraint_violation_significance = 8519734
3137
+ constraint_violation_condition = 8519735
3138
+ storage_media_file_set_id = 8913200
3139
+ storage_media_file_set_uid = 8913216
3140
+ icon_image_sequence = 8913408
3141
+ topic_title = 8915204
3142
+ topic_subject = 8915206
3143
+ topic_author = 8915216
3144
+ topic_keywords = 8915218
3145
+ sop_instance_status = 16778256
3146
+ sop_authorization_datetime = 16778272
3147
+ sop_authorization_comment = 16778276
3148
+ authorization_equipment_certification_number = 16778278
3149
+ mac_id_number = 67108869
3150
+ mac_calculation_transfer_syntax_uid = 67108880
3151
+ mac_algorithm = 67108885
3152
+ data_elements_signed = 67108896
3153
+ digital_signature_uid = 67109120
3154
+ digital_signature_datetime = 67109125
3155
+ certificate_type = 67109136
3156
+ certificate_of_signer = 67109141
3157
+ signature = 67109152
3158
+ certified_timestamp_type = 67109637
3159
+ certified_timestamp = 67109648
3160
+ digital_signature_purpose_code_sequence = 67109889
3161
+ referenced_digital_signature_sequence = 67109890
3162
+ referenced_sop_instance_mac_sequence = 67109891
3163
+ mac = 67109892
3164
+ encrypted_attributes_sequence = 67110144
3165
+ encrypted_content_transfer_syntax_uid = 67110160
3166
+ encrypted_content = 67110176
3167
+ modified_attributes_sequence = 67110224
3168
+ original_attributes_sequence = 67110241
3169
+ attribute_modification_datetime = 67110242
3170
+ modifying_system = 67110243
3171
+ source_of_previous_values = 67110244
3172
+ reason_for_the_attribute_modification = 67110245
3173
+ number_of_copies = 536870928
3174
+ printer_configuration_sequence = 536870942
3175
+ print_priority = 536870944
3176
+ medium_type = 536870960
3177
+ film_destination = 536870976
3178
+ film_session_label = 536870992
3179
+ memory_allocation = 536871008
3180
+ maximum_memory_allocation = 536871009
3181
+ color_image_printing_flag = 536871010
3182
+ collation_flag = 536871011
3183
+ annotation_flag = 536871013
3184
+ image_overlay_flag = 536871015
3185
+ presentation_lut_flag = 536871017
3186
+ image_box_presentation_lut_flag = 536871018
3187
+ memory_bit_depth = 536871072
3188
+ printing_bit_depth = 536871073
3189
+ media_installed_sequence = 536871074
3190
+ other_media_available_sequence = 536871076
3191
+ supported_image_display_formats_sequence = 536871080
3192
+ referenced_film_box_sequence = 536872192
3193
+ referenced_stored_print_sequence = 536872208
3194
+ image_display_format = 537919504
3195
+ annotation_display_format_id = 537919536
3196
+ film_orientation = 537919552
3197
+ film_size_id = 537919568
3198
+ printer_resolution_id = 537919570
3199
+ default_printer_resolution_id = 537919572
3200
+ magnification_type = 537919584
3201
+ smoothing_type = 537919616
3202
+ default_magnification_type = 537919654
3203
+ other_magnification_types_available = 537919655
3204
+ default_smoothing_type = 537919656
3205
+ other_smoothing_types_available = 537919657
3206
+ border_density = 537919744
3207
+ empty_image_density = 537919760
3208
+ min_density = 537919776
3209
+ max_density = 537919792
3210
+ trim = 537919808
3211
+ configuration_information = 537919824
3212
+ configuration_information_description = 537919826
3213
+ maximum_collated_films = 537919828
3214
+ illumination = 537919838
3215
+ reflected_ambient_light = 537919840
3216
+ printer_pixel_spacing = 537920374
3217
+ referenced_film_session_sequence = 537920768
3218
+ referenced_image_box_sequence = 537920784
3219
+ referenced_basic_annotation_box_sequence = 537920800
3220
+ image_box_position = 538968080
3221
+ polarity = 538968096
3222
+ requested_image_size = 538968112
3223
+ requested_decimate_crop_behavior = 538968128
3224
+ requested_resolution_id = 538968144
3225
+ requested_image_size_flag = 538968224
3226
+ decimate_crop_result = 538968226
3227
+ basic_grayscale_image_sequence = 538968336
3228
+ basic_color_image_sequence = 538968337
3229
+ referenced_image_overlay_box_sequence = 538968368
3230
+ referenced_voi_lut_box_sequence = 538968384
3231
+ annotation_position = 540016656
3232
+ text_string = 540016672
3233
+ referenced_overlay_plane_sequence = 541065232
3234
+ referenced_overlay_plane_groups = 541065233
3235
+ overlay_pixel_data_sequence = 541065248
3236
+ overlay_magnification_type = 541065312
3237
+ overlay_smoothing_type = 541065328
3238
+ overlay_or_image_magnification = 541065330
3239
+ magnify_to_number_of_columns = 541065332
3240
+ overlay_foreground_density = 541065344
3241
+ overlay_background_density = 541065346
3242
+ overlay_mode = 541065360
3243
+ threshold_density = 541065472
3244
+ referenced_image_box_sequence__retired_ = 541066496
3245
+ presentation_lut_sequence = 542113808
3246
+ presentation_lut_shape = 542113824
3247
+ referenced_presentation_lut_sequence = 542115072
3248
+ print_job_id = 553648144
3249
+ execution_status = 553648160
3250
+ execution_status_info = 553648176
3251
+ creation_date = 553648192
3252
+ creation_time = 553648208
3253
+ originator = 553648240
3254
+ destination_ae = 553648448
3255
+ owner_id = 553648480
3256
+ number_of_films = 553648496
3257
+ referenced_print_job_sequence__pull_stored_print_ = 553649408
3258
+ printer_status = 554696720
3259
+ printer_status_info = 554696736
3260
+ printer_name = 554696752
3261
+ print_queue_id = 554696857
3262
+ queue_status = 555745296
3263
+ print_job_description_sequence = 555745360
3264
+ referenced_print_job_sequence = 555745392
3265
+ print_management_capabilities_sequence = 556793872
3266
+ printer_characteristics_sequence = 556793877
3267
+ film_box_content_sequence = 556793904
3268
+ image_box_content_sequence = 556793920
3269
+ annotation_content_sequence = 556793936
3270
+ image_overlay_box_content_sequence = 556793952
3271
+ presentation_lut_content_sequence = 556793984
3272
+ proposed_study_sequence = 556794016
3273
+ original_image_sequence = 556794048
3274
+ label_using_information_extracted_from_instances = 570425345
3275
+ label_text = 570425346
3276
+ label_style_selection = 570425347
3277
+ media_disposition = 570425348
3278
+ barcode_value = 570425349
3279
+ barcode_symbology = 570425350
3280
+ allow_media_splitting = 570425351
3281
+ include_non_dicom_objects = 570425352
3282
+ include_display_application = 570425353
3283
+ preserve_composite_instances_after_media_creation = 570425354
3284
+ total_number_of_pieces_of_media_created = 570425355
3285
+ requested_media_application_profile = 570425356
3286
+ referenced_storage_media_sequence = 570425357
3287
+ failure_attributes = 570425358
3288
+ allow_lossy_compression = 570425359
3289
+ request_priority = 570425376
3290
+ rt_image_label = 805437442
3291
+ rt_image_name = 805437443
3292
+ rt_image_description = 805437444
3293
+ reported_values_origin = 805437450
3294
+ rt_image_plane = 805437452
3295
+ x_ray_image_receptor_translation = 805437453
3296
+ x_ray_image_receptor_angle = 805437454
3297
+ rt_image_orientation = 805437456
3298
+ image_plane_pixel_spacing = 805437457
3299
+ rt_image_position = 805437458
3300
+ radiation_machine_name = 805437472
3301
+ radiation_machine_sad = 805437474
3302
+ radiation_machine_ssd = 805437476
3303
+ rt_image_sid = 805437478
3304
+ source_to_reference_object_distance = 805437480
3305
+ fraction_number = 805437481
3306
+ exposure_sequence = 805437488
3307
+ meterset_exposure = 805437490
3308
+ diaphragm_position = 805437492
3309
+ fluence_map_sequence = 805437504
3310
+ fluence_data_source = 805437505
3311
+ fluence_data_scale = 805437506
3312
+ primary_fluence_mode_sequence = 805437520
3313
+ fluence_mode = 805437521
3314
+ fluence_mode_id = 805437522
3315
+ dvh_type = 805568513
3316
+ dose_units = 805568514
3317
+ dose_type = 805568516
3318
+ spatial_transform_of_dose = 805568517
3319
+ dose_comment = 805568518
3320
+ normalization_point = 805568520
3321
+ dose_summation_type = 805568522
3322
+ grid_frame_offset_vector = 805568524
3323
+ dose_grid_scaling = 805568526
3324
+ rt_dose_roi_sequence = 805568528
3325
+ dose_value = 805568530
3326
+ tissue_heterogeneity_correction = 805568532
3327
+ dvh_normalization_point = 805568576
3328
+ dvh_normalization_dose_value = 805568578
3329
+ dvh_sequence = 805568592
3330
+ dvh_dose_scaling = 805568594
3331
+ dvh_volume_units = 805568596
3332
+ dvh_number_of_bins = 805568598
3333
+ dvh_data = 805568600
3334
+ dvh_referenced_roi_sequence = 805568608
3335
+ dvh_roi_contribution_type = 805568610
3336
+ dvh_minimum_dose = 805568624
3337
+ dvh_maximum_dose = 805568626
3338
+ dvh_mean_dose = 805568628
3339
+ structure_set_label = 805699586
3340
+ structure_set_name = 805699588
3341
+ structure_set_description = 805699590
3342
+ structure_set_date = 805699592
3343
+ structure_set_time = 805699593
3344
+ referenced_frame_of_reference_sequence = 805699600
3345
+ rt_referenced_study_sequence = 805699602
3346
+ rt_referenced_series_sequence = 805699604
3347
+ contour_image_sequence = 805699606
3348
+ predecessor_structure_set_sequence = 805699608
3349
+ structure_set_roi_sequence = 805699616
3350
+ roi_number = 805699618
3351
+ referenced_frame_of_reference_uid = 805699620
3352
+ roi_name = 805699622
3353
+ roi_description = 805699624
3354
+ roi_display_color = 805699626
3355
+ roi_volume = 805699628
3356
+ rt_related_roi_sequence = 805699632
3357
+ rt_roi_relationship = 805699635
3358
+ roi_generation_algorithm = 805699638
3359
+ roi_generation_description = 805699640
3360
+ roi_contour_sequence = 805699641
3361
+ contour_sequence = 805699648
3362
+ contour_geometric_type = 805699650
3363
+ contour_slab_thickness = 805699652
3364
+ contour_offset_vector = 805699653
3365
+ number_of_contour_points = 805699654
3366
+ contour_number = 805699656
3367
+ attached_contours = 805699657
3368
+ contour_data = 805699664
3369
+ rt_roi_observations_sequence = 805699712
3370
+ observation_number = 805699714
3371
+ referenced_roi_number = 805699716
3372
+ roi_observation_label = 805699717
3373
+ rt_roi_identification_code_sequence = 805699718
3374
+ roi_observation_description = 805699720
3375
+ related_rt_roi_observations_sequence = 805699744
3376
+ rt_roi_interpreted_type = 805699748
3377
+ roi_interpreter = 805699750
3378
+ roi_physical_properties_sequence = 805699760
3379
+ roi_physical_property = 805699762
3380
+ roi_physical_property_value = 805699764
3381
+ roi_elemental_composition_sequence = 805699766
3382
+ roi_elemental_composition_atomic_number = 805699767
3383
+ roi_elemental_composition_atomic_mass_fraction = 805699768
3384
+ additional_rt_roi_identification_code_sequence = 805699769
3385
+ frame_of_reference_relationship_sequence = 805699776
3386
+ related_frame_of_reference_uid = 805699778
3387
+ frame_of_reference_transformation_type = 805699780
3388
+ frame_of_reference_transformation_matrix = 805699782
3389
+ frame_of_reference_transformation_comment = 805699784
3390
+ measured_dose_reference_sequence = 805830672
3391
+ measured_dose_description = 805830674
3392
+ measured_dose_type = 805830676
3393
+ measured_dose_value = 805830678
3394
+ treatment_session_beam_sequence = 805830688
3395
+ treatment_session_ion_beam_sequence = 805830689
3396
+ current_fraction_number = 805830690
3397
+ treatment_control_point_date = 805830692
3398
+ treatment_control_point_time = 805830693
3399
+ treatment_termination_status = 805830698
3400
+ treatment_termination_code = 805830699
3401
+ treatment_verification_status = 805830700
3402
+ referenced_treatment_record_sequence = 805830704
3403
+ specified_primary_meterset = 805830706
3404
+ specified_secondary_meterset = 805830707
3405
+ delivered_primary_meterset = 805830710
3406
+ delivered_secondary_meterset = 805830711
3407
+ specified_treatment_time = 805830714
3408
+ delivered_treatment_time = 805830715
3409
+ control_point_delivery_sequence = 805830720
3410
+ ion_control_point_delivery_sequence = 805830721
3411
+ specified_meterset = 805830722
3412
+ delivered_meterset = 805830724
3413
+ meterset_rate_set = 805830725
3414
+ meterset_rate_delivered = 805830726
3415
+ scan_spot_metersets_delivered = 805830727
3416
+ dose_rate_delivered = 805830728
3417
+ treatment_summary_calculated_dose_reference_sequence = 805830736
3418
+ cumulative_dose_to_dose_reference = 805830738
3419
+ first_treatment_date = 805830740
3420
+ most_recent_treatment_date = 805830742
3421
+ number_of_fractions_delivered = 805830746
3422
+ override_sequence = 805830752
3423
+ parameter_sequence_pointer = 805830753
3424
+ override_parameter_pointer = 805830754
3425
+ parameter_item_index = 805830755
3426
+ measured_dose_reference_number = 805830756
3427
+ parameter_pointer = 805830757
3428
+ override_reason = 805830758
3429
+ corrected_parameter_sequence = 805830760
3430
+ correction_value = 805830762
3431
+ calculated_dose_reference_sequence = 805830768
3432
+ calculated_dose_reference_number = 805830770
3433
+ calculated_dose_reference_description = 805830772
3434
+ calculated_dose_reference_dose_value = 805830774
3435
+ start_meterset = 805830776
3436
+ end_meterset = 805830778
3437
+ referenced_measured_dose_reference_sequence = 805830784
3438
+ referenced_measured_dose_reference_number = 805830786
3439
+ referenced_calculated_dose_reference_sequence = 805830800
3440
+ referenced_calculated_dose_reference_number = 805830802
3441
+ beam_limiting_device_leaf_pairs_sequence = 805830816
3442
+ recorded_wedge_sequence = 805830832
3443
+ recorded_compensator_sequence = 805830848
3444
+ recorded_block_sequence = 805830864
3445
+ treatment_summary_measured_dose_reference_sequence = 805830880
3446
+ recorded_snout_sequence = 805830896
3447
+ recorded_range_shifter_sequence = 805830898
3448
+ recorded_lateral_spreading_device_sequence = 805830900
3449
+ recorded_range_modulator_sequence = 805830902
3450
+ recorded_source_sequence = 805830912
3451
+ source_serial_number = 805830917
3452
+ treatment_session_application_setup_sequence = 805830928
3453
+ application_setup_check = 805830934
3454
+ recorded_brachy_accessory_device_sequence = 805830944
3455
+ referenced_brachy_accessory_device_number = 805830946
3456
+ recorded_channel_sequence = 805830960
3457
+ specified_channel_total_time = 805830962
3458
+ delivered_channel_total_time = 805830964
3459
+ specified_number_of_pulses = 805830966
3460
+ delivered_number_of_pulses = 805830968
3461
+ specified_pulse_repetition_interval = 805830970
3462
+ delivered_pulse_repetition_interval = 805830972
3463
+ recorded_source_applicator_sequence = 805830976
3464
+ referenced_source_applicator_number = 805830978
3465
+ recorded_channel_shield_sequence = 805830992
3466
+ referenced_channel_shield_number = 805830994
3467
+ brachy_control_point_delivered_sequence = 805831008
3468
+ safe_position_exit_date = 805831010
3469
+ safe_position_exit_time = 805831012
3470
+ safe_position_return_date = 805831014
3471
+ safe_position_return_time = 805831016
3472
+ pulse_specific_brachy_control_point_delivered_sequence = 805831025
3473
+ pulse_number = 805831026
3474
+ brachy_pulse_control_point_delivered_sequence = 805831027
3475
+ current_treatment_status = 805831168
3476
+ treatment_status_comment = 805831170
3477
+ fraction_group_summary_sequence = 805831200
3478
+ referenced_fraction_number = 805831203
3479
+ fraction_group_type = 805831204
3480
+ beam_stopper_position = 805831216
3481
+ fraction_status_summary_sequence = 805831232
3482
+ treatment_date = 805831248
3483
+ treatment_time = 805831249
3484
+ rt_plan_label = 805961730
3485
+ rt_plan_name = 805961731
3486
+ rt_plan_description = 805961732
3487
+ rt_plan_date = 805961734
3488
+ rt_plan_time = 805961735
3489
+ treatment_protocols = 805961737
3490
+ plan_intent = 805961738
3491
+ treatment_sites = 805961739
3492
+ rt_plan_geometry = 805961740
3493
+ prescription_description = 805961742
3494
+ dose_reference_sequence = 805961744
3495
+ dose_reference_number = 805961746
3496
+ dose_reference_uid = 805961747
3497
+ dose_reference_structure_type = 805961748
3498
+ nominal_beam_energy_unit = 805961749
3499
+ dose_reference_description = 805961750
3500
+ dose_reference_point_coordinates = 805961752
3501
+ nominal_prior_dose = 805961754
3502
+ dose_reference_type = 805961760
3503
+ constraint_weight = 805961761
3504
+ delivery_warning_dose = 805961762
3505
+ delivery_maximum_dose = 805961763
3506
+ target_minimum_dose = 805961765
3507
+ target_prescription_dose = 805961766
3508
+ target_maximum_dose = 805961767
3509
+ target_underdose_volume_fraction = 805961768
3510
+ organ_at_risk_full_volume_dose = 805961770
3511
+ organ_at_risk_limit_dose = 805961771
3512
+ organ_at_risk_maximum_dose = 805961772
3513
+ organ_at_risk_overdose_volume_fraction = 805961773
3514
+ tolerance_table_sequence = 805961792
3515
+ tolerance_table_number = 805961794
3516
+ tolerance_table_label = 805961795
3517
+ gantry_angle_tolerance = 805961796
3518
+ beam_limiting_device_angle_tolerance = 805961798
3519
+ beam_limiting_device_tolerance_sequence = 805961800
3520
+ beam_limiting_device_position_tolerance = 805961802
3521
+ snout_position_tolerance = 805961803
3522
+ patient_support_angle_tolerance = 805961804
3523
+ table_top_eccentric_angle_tolerance = 805961806
3524
+ table_top_pitch_angle_tolerance = 805961807
3525
+ table_top_roll_angle_tolerance = 805961808
3526
+ table_top_vertical_position_tolerance = 805961809
3527
+ table_top_longitudinal_position_tolerance = 805961810
3528
+ table_top_lateral_position_tolerance = 805961811
3529
+ rt_plan_relationship = 805961813
3530
+ fraction_group_sequence = 805961840
3531
+ fraction_group_number = 805961841
3532
+ fraction_group_description = 805961842
3533
+ number_of_fractions_planned = 805961848
3534
+ number_of_fraction_pattern_digits_per_day = 805961849
3535
+ repeat_fraction_cycle_length = 805961850
3536
+ fraction_pattern = 805961851
3537
+ number_of_beams = 805961856
3538
+ beam_dose_specification_point = 805961858
3539
+ beam_dose = 805961860
3540
+ beam_meterset = 805961862
3541
+ beam_dose_point_depth = 805961864
3542
+ beam_dose_point_equivalent_depth = 805961865
3543
+ beam_dose_point_ssd = 805961866
3544
+ beam_dose_meaning = 805961867
3545
+ beam_dose_verification_control_point_sequence = 805961868
3546
+ average_beam_dose_point_depth = 805961869
3547
+ average_beam_dose_point_equivalent_depth = 805961870
3548
+ average_beam_dose_point_ssd = 805961871
3549
+ beam_dose_type = 805961872
3550
+ alternate_beam_dose = 805961873
3551
+ alternate_beam_dose_type = 805961874
3552
+ number_of_brachy_application_setups = 805961888
3553
+ brachy_application_setup_dose_specification_point = 805961890
3554
+ brachy_application_setup_dose = 805961892
3555
+ beam_sequence = 805961904
3556
+ treatment_machine_name = 805961906
3557
+ primary_dosimeter_unit = 805961907
3558
+ source_axis_distance = 805961908
3559
+ beam_limiting_device_sequence = 805961910
3560
+ rt_beam_limiting_device_type = 805961912
3561
+ source_to_beam_limiting_device_distance = 805961914
3562
+ isocenter_to_beam_limiting_device_distance = 805961915
3563
+ number_of_leaf_jaw_pairs = 805961916
3564
+ leaf_position_boundaries = 805961918
3565
+ beam_number = 805961920
3566
+ beam_name = 805961922
3567
+ beam_description = 805961923
3568
+ beam_type = 805961924
3569
+ beam_delivery_duration_limit = 805961925
3570
+ radiation_type = 805961926
3571
+ high_dose_technique_type = 805961927
3572
+ reference_image_number = 805961928
3573
+ planned_verification_image_sequence = 805961930
3574
+ imaging_device_specific_acquisition_parameters = 805961932
3575
+ treatment_delivery_type = 805961934
3576
+ number_of_wedges = 805961936
3577
+ wedge_sequence = 805961937
3578
+ wedge_number = 805961938
3579
+ wedge_type = 805961939
3580
+ wedge_id = 805961940
3581
+ wedge_angle = 805961941
3582
+ wedge_factor = 805961942
3583
+ total_wedge_tray_water_equivalent_thickness = 805961943
3584
+ wedge_orientation = 805961944
3585
+ isocenter_to_wedge_tray_distance = 805961945
3586
+ source_to_wedge_tray_distance = 805961946
3587
+ wedge_thin_edge_position = 805961947
3588
+ bolus_id = 805961948
3589
+ bolus_description = 805961949
3590
+ effective_wedge_angle = 805961950
3591
+ number_of_compensators = 805961952
3592
+ material_id = 805961953
3593
+ total_compensator_tray_factor = 805961954
3594
+ compensator_sequence = 805961955
3595
+ compensator_number = 805961956
3596
+ compensator_id = 805961957
3597
+ source_to_compensator_tray_distance = 805961958
3598
+ compensator_rows = 805961959
3599
+ compensator_columns = 805961960
3600
+ compensator_pixel_spacing = 805961961
3601
+ compensator_position = 805961962
3602
+ compensator_transmission_data = 805961963
3603
+ compensator_thickness_data = 805961964
3604
+ number_of_boli = 805961965
3605
+ compensator_type = 805961966
3606
+ compensator_tray_id = 805961967
3607
+ number_of_blocks = 805961968
3608
+ total_block_tray_factor = 805961970
3609
+ total_block_tray_water_equivalent_thickness = 805961971
3610
+ block_sequence = 805961972
3611
+ block_tray_id = 805961973
3612
+ source_to_block_tray_distance = 805961974
3613
+ isocenter_to_block_tray_distance = 805961975
3614
+ block_type = 805961976
3615
+ accessory_code = 805961977
3616
+ block_divergence = 805961978
3617
+ block_mounting_position = 805961979
3618
+ block_number = 805961980
3619
+ block_name = 805961982
3620
+ block_thickness = 805961984
3621
+ block_transmission = 805961986
3622
+ block_number_of_points = 805961988
3623
+ block_data = 805961990
3624
+ applicator_sequence = 805961991
3625
+ applicator_id = 805961992
3626
+ applicator_type = 805961993
3627
+ applicator_description = 805961994
3628
+ cumulative_dose_reference_coefficient = 805961996
3629
+ final_cumulative_meterset_weight = 805961998
3630
+ number_of_control_points = 805962000
3631
+ control_point_sequence = 805962001
3632
+ control_point_index = 805962002
3633
+ nominal_beam_energy = 805962004
3634
+ dose_rate_set = 805962005
3635
+ wedge_position_sequence = 805962006
3636
+ wedge_position = 805962008
3637
+ beam_limiting_device_position_sequence = 805962010
3638
+ leaf_jaw_positions = 805962012
3639
+ gantry_angle = 805962014
3640
+ gantry_rotation_direction = 805962015
3641
+ beam_limiting_device_angle = 805962016
3642
+ beam_limiting_device_rotation_direction = 805962017
3643
+ patient_support_angle = 805962018
3644
+ patient_support_rotation_direction = 805962019
3645
+ table_top_eccentric_axis_distance = 805962020
3646
+ table_top_eccentric_angle = 805962021
3647
+ table_top_eccentric_rotation_direction = 805962022
3648
+ table_top_vertical_position = 805962024
3649
+ table_top_longitudinal_position = 805962025
3650
+ table_top_lateral_position = 805962026
3651
+ isocenter_position = 805962028
3652
+ surface_entry_point = 805962030
3653
+ source_to_surface_distance = 805962032
3654
+ average_beam_dose_point_source_to_external_contour_distance = 805962033
3655
+ source_to_external_contour_distance = 805962034
3656
+ external_contour_entry_point = 805962035
3657
+ cumulative_meterset_weight = 805962036
3658
+ table_top_pitch_angle = 805962048
3659
+ table_top_pitch_rotation_direction = 805962050
3660
+ table_top_roll_angle = 805962052
3661
+ table_top_roll_rotation_direction = 805962054
3662
+ head_fixation_angle = 805962056
3663
+ gantry_pitch_angle = 805962058
3664
+ gantry_pitch_rotation_direction = 805962060
3665
+ gantry_pitch_angle_tolerance = 805962062
3666
+ fixation_eye = 805962064
3667
+ chair_head_frame_position = 805962065
3668
+ head_fixation_angle_tolerance = 805962066
3669
+ chair_head_frame_position_tolerance = 805962067
3670
+ fixation_light_azimuthal_angle_tolerance = 805962068
3671
+ fixation_light_polar_angle_tolerance = 805962069
3672
+ patient_setup_sequence = 805962112
3673
+ patient_setup_number = 805962114
3674
+ patient_setup_label = 805962115
3675
+ patient_additional_position = 805962116
3676
+ fixation_device_sequence = 805962128
3677
+ fixation_device_type = 805962130
3678
+ fixation_device_label = 805962132
3679
+ fixation_device_description = 805962134
3680
+ fixation_device_position = 805962136
3681
+ fixation_device_pitch_angle = 805962137
3682
+ fixation_device_roll_angle = 805962138
3683
+ shielding_device_sequence = 805962144
3684
+ shielding_device_type = 805962146
3685
+ shielding_device_label = 805962148
3686
+ shielding_device_description = 805962150
3687
+ shielding_device_position = 805962152
3688
+ setup_technique = 805962160
3689
+ setup_technique_description = 805962162
3690
+ setup_device_sequence = 805962164
3691
+ setup_device_type = 805962166
3692
+ setup_device_label = 805962168
3693
+ setup_device_description = 805962170
3694
+ setup_device_parameter = 805962172
3695
+ setup_reference_description = 805962192
3696
+ table_top_vertical_setup_displacement = 805962194
3697
+ table_top_longitudinal_setup_displacement = 805962196
3698
+ table_top_lateral_setup_displacement = 805962198
3699
+ brachy_treatment_technique = 805962240
3700
+ brachy_treatment_type = 805962242
3701
+ treatment_machine_sequence = 805962246
3702
+ source_sequence = 805962256
3703
+ source_number = 805962258
3704
+ source_type = 805962260
3705
+ source_manufacturer = 805962262
3706
+ active_source_diameter = 805962264
3707
+ active_source_length = 805962266
3708
+ source_model_id = 805962267
3709
+ source_description = 805962268
3710
+ source_encapsulation_nominal_thickness = 805962274
3711
+ source_encapsulation_nominal_transmission = 805962276
3712
+ source_isotope_name = 805962278
3713
+ source_isotope_half_life = 805962280
3714
+ source_strength_units = 805962281
3715
+ reference_air_kerma_rate = 805962282
3716
+ source_strength = 805962283
3717
+ source_strength_reference_date = 805962284
3718
+ source_strength_reference_time = 805962286
3719
+ application_setup_sequence = 805962288
3720
+ application_setup_type = 805962290
3721
+ application_setup_number = 805962292
3722
+ application_setup_name = 805962294
3723
+ application_setup_manufacturer = 805962296
3724
+ template_number = 805962304
3725
+ template_type = 805962306
3726
+ template_name = 805962308
3727
+ total_reference_air_kerma = 805962320
3728
+ brachy_accessory_device_sequence = 805962336
3729
+ brachy_accessory_device_number = 805962338
3730
+ brachy_accessory_device_id = 805962339
3731
+ brachy_accessory_device_type = 805962340
3732
+ brachy_accessory_device_name = 805962342
3733
+ brachy_accessory_device_nominal_thickness = 805962346
3734
+ brachy_accessory_device_nominal_transmission = 805962348
3735
+ channel_sequence = 805962368
3736
+ channel_number = 805962370
3737
+ channel_length = 805962372
3738
+ channel_total_time = 805962374
3739
+ source_movement_type = 805962376
3740
+ number_of_pulses = 805962378
3741
+ pulse_repetition_interval = 805962380
3742
+ source_applicator_number = 805962384
3743
+ source_applicator_id = 805962385
3744
+ source_applicator_type = 805962386
3745
+ source_applicator_name = 805962388
3746
+ source_applicator_length = 805962390
3747
+ source_applicator_manufacturer = 805962392
3748
+ source_applicator_wall_nominal_thickness = 805962396
3749
+ source_applicator_wall_nominal_transmission = 805962398
3750
+ source_applicator_step_size = 805962400
3751
+ transfer_tube_number = 805962402
3752
+ transfer_tube_length = 805962404
3753
+ channel_shield_sequence = 805962416
3754
+ channel_shield_number = 805962418
3755
+ channel_shield_id = 805962419
3756
+ channel_shield_name = 805962420
3757
+ channel_shield_nominal_thickness = 805962424
3758
+ channel_shield_nominal_transmission = 805962426
3759
+ final_cumulative_time_weight = 805962440
3760
+ brachy_control_point_sequence = 805962448
3761
+ control_point_relative_position = 805962450
3762
+ control_point_3d_position = 805962452
3763
+ cumulative_time_weight = 805962454
3764
+ compensator_divergence = 805962464
3765
+ compensator_mounting_position = 805962465
3766
+ source_to_compensator_distance = 805962466
3767
+ total_compensator_tray_water_equivalent_thickness = 805962467
3768
+ isocenter_to_compensator_tray_distance = 805962468
3769
+ compensator_column_offset = 805962469
3770
+ isocenter_to_compensator_distances = 805962470
3771
+ compensator_relative_stopping_power_ratio = 805962471
3772
+ compensator_milling_tool_diameter = 805962472
3773
+ ion_range_compensator_sequence = 805962474
3774
+ compensator_description = 805962475
3775
+ radiation_mass_number = 805962498
3776
+ radiation_atomic_number = 805962500
3777
+ radiation_charge_state = 805962502
3778
+ scan_mode = 805962504
3779
+ modulated_scan_mode_type = 805962505
3780
+ virtual_source_axis_distances = 805962506
3781
+ snout_sequence = 805962508
3782
+ snout_position = 805962509
3783
+ snout_id = 805962511
3784
+ number_of_range_shifters = 805962514
3785
+ range_shifter_sequence = 805962516
3786
+ range_shifter_number = 805962518
3787
+ range_shifter_id = 805962520
3788
+ range_shifter_type = 805962528
3789
+ range_shifter_description = 805962530
3790
+ number_of_lateral_spreading_devices = 805962544
3791
+ lateral_spreading_device_sequence = 805962546
3792
+ lateral_spreading_device_number = 805962548
3793
+ lateral_spreading_device_id = 805962550
3794
+ lateral_spreading_device_type = 805962552
3795
+ lateral_spreading_device_description = 805962554
3796
+ lateral_spreading_device_water_equivalent_thickness = 805962556
3797
+ number_of_range_modulators = 805962560
3798
+ range_modulator_sequence = 805962562
3799
+ range_modulator_number = 805962564
3800
+ range_modulator_id = 805962566
3801
+ range_modulator_type = 805962568
3802
+ range_modulator_description = 805962570
3803
+ beam_current_modulation_id = 805962572
3804
+ patient_support_type = 805962576
3805
+ patient_support_id = 805962578
3806
+ patient_support_accessory_code = 805962580
3807
+ tray_accessory_code = 805962581
3808
+ fixation_light_azimuthal_angle = 805962582
3809
+ fixation_light_polar_angle = 805962584
3810
+ meterset_rate = 805962586
3811
+ range_shifter_settings_sequence = 805962592
3812
+ range_shifter_setting = 805962594
3813
+ isocenter_to_range_shifter_distance = 805962596
3814
+ range_shifter_water_equivalent_thickness = 805962598
3815
+ lateral_spreading_device_settings_sequence = 805962608
3816
+ lateral_spreading_device_setting = 805962610
3817
+ isocenter_to_lateral_spreading_device_distance = 805962612
3818
+ range_modulator_settings_sequence = 805962624
3819
+ range_modulator_gating_start_value = 805962626
3820
+ range_modulator_gating_stop_value = 805962628
3821
+ range_modulator_gating_start_water_equivalent_thickness = 805962630
3822
+ range_modulator_gating_stop_water_equivalent_thickness = 805962632
3823
+ isocenter_to_range_modulator_distance = 805962634
3824
+ scan_spot_tune_id = 805962640
3825
+ scan_spot_prescribed_indices = 805962641
3826
+ number_of_scan_spot_positions = 805962642
3827
+ scan_spot_reordered = 805962643
3828
+ scan_spot_position_map = 805962644
3829
+ scan_spot_reordering_allowed = 805962645
3830
+ scan_spot_meterset_weights = 805962646
3831
+ scanning_spot_size = 805962648
3832
+ number_of_paintings = 805962650
3833
+ ion_tolerance_table_sequence = 805962656
3834
+ ion_beam_sequence = 805962658
3835
+ ion_beam_limiting_device_sequence = 805962660
3836
+ ion_block_sequence = 805962662
3837
+ ion_control_point_sequence = 805962664
3838
+ ion_wedge_sequence = 805962666
3839
+ ion_wedge_position_sequence = 805962668
3840
+ referenced_setup_image_sequence = 805962753
3841
+ setup_image_comment = 805962754
3842
+ motion_synchronization_sequence = 805962768
3843
+ control_point_orientation = 805962770
3844
+ general_accessory_sequence = 805962784
3845
+ general_accessory_id = 805962785
3846
+ general_accessory_description = 805962786
3847
+ general_accessory_type = 805962787
3848
+ general_accessory_number = 805962788
3849
+ source_to_general_accessory_distance = 805962789
3850
+ applicator_geometry_sequence = 805962801
3851
+ applicator_aperture_shape = 805962802
3852
+ applicator_opening = 805962803
3853
+ applicator_opening_x = 805962804
3854
+ applicator_opening_y = 805962805
3855
+ source_to_applicator_mounting_position_distance = 805962806
3856
+ number_of_block_slab_items = 805962816
3857
+ block_slab_sequence = 805962817
3858
+ block_slab_thickness = 805962818
3859
+ block_slab_number = 805962819
3860
+ device_motion_control_sequence = 805962832
3861
+ device_motion_execution_mode = 805962833
3862
+ device_motion_observation_mode = 805962834
3863
+ device_motion_parameter_code_sequence = 805962835
3864
+ distal_depth_fraction = 805963009
3865
+ distal_depth = 805963010
3866
+ nominal_range_modulation_fractions = 805963011
3867
+ nominal_range_modulated_region_depths = 805963012
3868
+ depth_dose_parameters_sequence = 805963013
3869
+ delivered_depth_dose_parameters_sequence = 805963014
3870
+ delivered_distal_depth_fraction = 805963015
3871
+ delivered_distal_depth = 805963016
3872
+ delivered_nominal_range_modulation_fractions = 805963017
3873
+ delivered_nominal_range_modulated_region_depths = 805963024
3874
+ delivered_reference_dose_definition = 805963025
3875
+ reference_dose_definition = 805963026
3876
+ referenced_rt_plan_sequence = 806092802
3877
+ referenced_beam_sequence = 806092804
3878
+ referenced_beam_number = 806092806
3879
+ referenced_reference_image_number = 806092807
3880
+ start_cumulative_meterset_weight = 806092808
3881
+ end_cumulative_meterset_weight = 806092809
3882
+ referenced_brachy_application_setup_sequence = 806092810
3883
+ referenced_brachy_application_setup_number = 806092812
3884
+ referenced_source_number = 806092814
3885
+ referenced_fraction_group_sequence = 806092832
3886
+ referenced_fraction_group_number = 806092834
3887
+ referenced_verification_image_sequence = 806092864
3888
+ referenced_reference_image_sequence = 806092866
3889
+ referenced_dose_reference_sequence = 806092880
3890
+ referenced_dose_reference_number = 806092881
3891
+ brachy_referenced_dose_reference_sequence = 806092885
3892
+ referenced_structure_set_sequence = 806092896
3893
+ referenced_patient_setup_number = 806092906
3894
+ referenced_dose_sequence = 806092928
3895
+ referenced_tolerance_table_number = 806092960
3896
+ referenced_bolus_sequence = 806092976
3897
+ referenced_wedge_number = 806092992
3898
+ referenced_compensator_number = 806093008
3899
+ referenced_block_number = 806093024
3900
+ referenced_control_point_index = 806093040
3901
+ referenced_control_point_sequence = 806093042
3902
+ referenced_start_control_point_index = 806093044
3903
+ referenced_stop_control_point_index = 806093046
3904
+ referenced_range_shifter_number = 806093056
3905
+ referenced_lateral_spreading_device_number = 806093058
3906
+ referenced_range_modulator_number = 806093060
3907
+ omitted_beam_task_sequence = 806093073
3908
+ reason_for_omission = 806093074
3909
+ reason_for_omission_description = 806093075
3910
+ approval_status = 806223874
3911
+ review_date = 806223876
3912
+ review_time = 806223877
3913
+ reviewer_name = 806223880
3914
+ arbitrary = 1073741840
3915
+ text_comments = 1073758208
3916
+ results_id = 1074266176
3917
+ results_id_issuer = 1074266178
3918
+ referenced_interpretation_sequence = 1074266192
3919
+ report_production_status__trial_ = 1074266367
3920
+ interpretation_recorded_date = 1074266368
3921
+ interpretation_recorded_time = 1074266369
3922
+ interpretation_recorder = 1074266370
3923
+ reference_to_recorded_sound = 1074266371
3924
+ interpretation_transcription_date = 1074266376
3925
+ interpretation_transcription_time = 1074266377
3926
+ interpretation_transcriber = 1074266378
3927
+ interpretation_text = 1074266379
3928
+ interpretation_author = 1074266380
3929
+ interpretation_approver_sequence = 1074266385
3930
+ interpretation_approval_date = 1074266386
3931
+ interpretation_approval_time = 1074266387
3932
+ physician_approving_interpretation = 1074266388
3933
+ interpretation_diagnosis_description = 1074266389
3934
+ interpretation_diagnosis_code_sequence = 1074266391
3935
+ results_distribution_list_sequence = 1074266392
3936
+ distribution_name = 1074266393
3937
+ distribution_address = 1074266394
3938
+ interpretation_id = 1074266624
3939
+ interpretation_id_issuer = 1074266626
3940
+ interpretation_type_id = 1074266640
3941
+ interpretation_status_id = 1074266642
3942
+ impressions = 1074266880
3943
+ results_comments = 1074282496
3944
+ low_energy_detectors = 1074790401
3945
+ high_energy_detectors = 1074790402
3946
+ detector_geometry_sequence = 1074790404
3947
+ threat_roi_voxel_sequence = 1074794497
3948
+ threat_roi_base = 1074794500
3949
+ threat_roi_extents = 1074794501
3950
+ threat_roi_bitmap = 1074794502
3951
+ route_segment_id = 1074794503
3952
+ gantry_type = 1074794504
3953
+ ooi_owner_type = 1074794505
3954
+ route_segment_sequence = 1074794506
3955
+ potential_threat_object_id = 1074794512
3956
+ threat_sequence = 1074794513
3957
+ threat_category = 1074794514
3958
+ threat_category_description = 1074794515
3959
+ atd_ability_assessment = 1074794516
3960
+ atd_assessment_flag = 1074794517
3961
+ atd_assessment_probability = 1074794518
3962
+ mass = 1074794519
3963
+ density = 1074794520
3964
+ z_effective = 1074794521
3965
+ boarding_pass_id = 1074794522
3966
+ center_of_mass = 1074794523
3967
+ center_of_pto = 1074794524
3968
+ bounding_polygon = 1074794525
3969
+ route_segment_start_location_id = 1074794526
3970
+ route_segment_end_location_id = 1074794527
3971
+ route_segment_location_id_type = 1074794528
3972
+ abort_reason = 1074794529
3973
+ volume_of_pto = 1074794531
3974
+ abort_flag = 1074794532
3975
+ route_segment_start_time = 1074794533
3976
+ route_segment_end_time = 1074794534
3977
+ tdr_type = 1074794535
3978
+ international_route_segment = 1074794536
3979
+ threat_detection_algorithm_and_version = 1074794537
3980
+ assigned_location = 1074794538
3981
+ alarm_decision_time = 1074794539
3982
+ alarm_decision = 1074794545
3983
+ number_of_total_objects = 1074794547
3984
+ number_of_alarm_objects = 1074794548
3985
+ pto_representation_sequence = 1074794551
3986
+ atd_assessment_sequence = 1074794552
3987
+ tip_type = 1074794553
3988
+ version = 1074794554
3989
+ ooi_owner_creation_time = 1074794561
3990
+ ooi_type = 1074794562
3991
+ ooi_size = 1074794563
3992
+ acquisition_status = 1074794564
3993
+ basis_materials_code_sequence = 1074794565
3994
+ phantom_type = 1074794566
3995
+ ooi_owner_sequence = 1074794567
3996
+ scan_type = 1074794568
3997
+ itinerary_id = 1074794577
3998
+ itinerary_id_type = 1074794578
3999
+ itinerary_id_assigning_authority = 1074794579
4000
+ route_id = 1074794580
4001
+ route_id_assigning_authority = 1074794581
4002
+ inbound_arrival_type = 1074794582
4003
+ carrier_id = 1074794584
4004
+ carrier_id_assigning_authority = 1074794585
4005
+ source_orientation = 1074794592
4006
+ source_position = 1074794593
4007
+ belt_height = 1074794594
4008
+ algorithm_routing_code_sequence = 1074794596
4009
+ transport_classification = 1074794599
4010
+ ooi_type_descriptor = 1074794600
4011
+ total_processing_time = 1074794601
4012
+ detector_calibration_data = 1074794604
4013
+ additional_screening_performed = 1074794605
4014
+ additional_inspection_selection_criteria = 1074794606
4015
+ additional_inspection_method_sequence = 1074794607
4016
+ ait_device_type = 1074794608
4017
+ qr_measurements_sequence = 1074794609
4018
+ target_material_sequence = 1074794610
4019
+ snr_threshold = 1074794611
4020
+ image_scale_representation = 1074794613
4021
+ referenced_pto_sequence = 1074794614
4022
+ referenced_tdr_instance_sequence = 1074794615
4023
+ pto_location_description = 1074794616
4024
+ anomaly_locator_indicator_sequence = 1074794617
4025
+ anomaly_locator_indicator = 1074794618
4026
+ pto_region_sequence = 1074794619
4027
+ inspection_selection_criteria = 1074794620
4028
+ secondary_inspection_method_sequence = 1074794621
4029
+ prcs_to_rcs_orientation = 1074794622
4030
+ mac_parameters_sequence = 1342046209
4031
+ shared_functional_groups_sequence = 1375769129
4032
+ per_frame_functional_groups_sequence = 1375769136
4033
+ waveform_sequence = 1409286400
4034
+ channel_minimum_value = 1409286416
4035
+ channel_maximum_value = 1409286418
4036
+ waveform_bits_allocated = 1409290244
4037
+ waveform_sample_interpretation = 1409290246
4038
+ waveform_padding_value = 1409290250
4039
+ waveform_data = 1409290256
4040
+ first_order_phase_correction_angle = 1442840592
4041
+ spectroscopy_data = 1442840608
4042
+ float_pixel_data = 2145386504
4043
+ double_float_pixel_data = 2145386505
4044
+ pixel_data = 2145386512
4045
+ coefficients_sdvn = 2145386528
4046
+ coefficients_sdhn = 2145386544
4047
+ coefficients_sddn = 2145386560
4048
+ digital_signatures_sequence = 4294639610
4049
+ data_set_trailing_padding = 4294770684
4050
+ item = 4294893568
4051
+ item_delimitation_item = 4294893581
4052
+ sequence_delimitation_item = 4294893789
4053
+ SEQ_FIELDS = ["file_header", "elements"]
4054
+ def __init__(self, _io, _parent=None, _root=None):
4055
+ self._io = _io
4056
+ self._parent = _parent
4057
+ self._root = _root if _root else self
4058
+ self._debug = collections.defaultdict(dict)
4059
+
4060
+ def _read(self):
4061
+ self._debug['file_header']['start'] = self._io.pos()
4062
+ self.file_header = Dicom.TFileHeader(self._io, self, self._root)
4063
+ self.file_header._read()
4064
+ self._debug['file_header']['end'] = self._io.pos()
4065
+ self._debug['elements']['start'] = self._io.pos()
4066
+ self.elements = []
4067
+ i = 0
4068
+ while not self._io.is_eof():
4069
+ if not 'arr' in self._debug['elements']:
4070
+ self._debug['elements']['arr'] = []
4071
+ self._debug['elements']['arr'].append({'start': self._io.pos()})
4072
+ _t_elements = Dicom.TDataElementImplicit(self._io, self, self._root)
4073
+ _t_elements._read()
4074
+ self.elements.append(_t_elements)
4075
+ self._debug['elements']['arr'][len(self.elements) - 1]['end'] = self._io.pos()
4076
+ i += 1
4077
+
4078
+ self._debug['elements']['end'] = self._io.pos()
4079
+
4080
+ class TFileHeader(KaitaiStruct):
4081
+ SEQ_FIELDS = ["preamble", "magic"]
4082
+ def __init__(self, _io, _parent=None, _root=None):
4083
+ self._io = _io
4084
+ self._parent = _parent
4085
+ self._root = _root if _root else self
4086
+ self._debug = collections.defaultdict(dict)
4087
+
4088
+ def _read(self):
4089
+ self._debug['preamble']['start'] = self._io.pos()
4090
+ self.preamble = self._io.read_bytes(128)
4091
+ self._debug['preamble']['end'] = self._io.pos()
4092
+ self._debug['magic']['start'] = self._io.pos()
4093
+ self.magic = self._io.read_bytes(4)
4094
+ self._debug['magic']['end'] = self._io.pos()
4095
+ if not self.magic == b"\x44\x49\x43\x4D":
4096
+ raise kaitaistruct.ValidationNotEqualError(b"\x44\x49\x43\x4D", self.magic, self._io, u"/types/t_file_header/seq/1")
4097
+
4098
+
4099
+ class TDataElementExplicit(KaitaiStruct):
4100
+ """
4101
+ .. seealso::
4102
+ Source - https://dicom.nema.org/medical/dicom/current/output/html/part05.html#sect_7.1.2
4103
+ """
4104
+ SEQ_FIELDS = ["tag_group", "tag_elem", "vr", "reserved", "value_len", "value", "items", "elements_implicit"]
4105
+ def __init__(self, _io, _parent=None, _root=None):
4106
+ self._io = _io
4107
+ self._parent = _parent
4108
+ self._root = _root if _root else self
4109
+ self._debug = collections.defaultdict(dict)
4110
+
4111
+ def _read(self):
4112
+ self._debug['tag_group']['start'] = self._io.pos()
4113
+ self.tag_group = self._io.read_u2le()
4114
+ self._debug['tag_group']['end'] = self._io.pos()
4115
+ self._debug['tag_elem']['start'] = self._io.pos()
4116
+ self.tag_elem = self._io.read_u2le()
4117
+ self._debug['tag_elem']['end'] = self._io.pos()
4118
+ if not (self.is_forced_implicit):
4119
+ self._debug['vr']['start'] = self._io.pos()
4120
+ self.vr = (self._io.read_bytes(2)).decode(u"ASCII")
4121
+ self._debug['vr']['end'] = self._io.pos()
4122
+
4123
+ if ((self.is_long_len) and (not (self.is_forced_implicit))) :
4124
+ self._debug['reserved']['start'] = self._io.pos()
4125
+ self.reserved = self._io.read_u2le()
4126
+ self._debug['reserved']['end'] = self._io.pos()
4127
+
4128
+ self._debug['value_len']['start'] = self._io.pos()
4129
+ _on = self.is_long_len
4130
+ if _on == False:
4131
+ self.value_len = self._io.read_u2le()
4132
+ elif _on == True:
4133
+ self.value_len = self._io.read_u4le()
4134
+ self._debug['value_len']['end'] = self._io.pos()
4135
+ if self.value_len != 4294967295:
4136
+ self._debug['value']['start'] = self._io.pos()
4137
+ self.value = self._io.read_bytes(self.value_len)
4138
+ self._debug['value']['end'] = self._io.pos()
4139
+
4140
+ if ((self.vr == u"SQ") and (self.value_len == 4294967295)) :
4141
+ self._debug['items']['start'] = self._io.pos()
4142
+ self.items = []
4143
+ i = 0
4144
+ while True:
4145
+ if not 'arr' in self._debug['items']:
4146
+ self._debug['items']['arr'] = []
4147
+ self._debug['items']['arr'].append({'start': self._io.pos()})
4148
+ _t_items = Dicom.SeqItem(self._io, self, self._root)
4149
+ _t_items._read()
4150
+ _ = _t_items
4151
+ self.items.append(_)
4152
+ self._debug['items']['arr'][len(self.items) - 1]['end'] = self._io.pos()
4153
+ if _.tag_elem == 57565:
4154
+ break
4155
+ i += 1
4156
+ self._debug['items']['end'] = self._io.pos()
4157
+
4158
+ if self.is_transfer_syntax_change_implicit:
4159
+ self._debug['elements_implicit']['start'] = self._io.pos()
4160
+ self.elements_implicit = []
4161
+ i = 0
4162
+ while not self._io.is_eof():
4163
+ if not 'arr' in self._debug['elements_implicit']:
4164
+ self._debug['elements_implicit']['arr'] = []
4165
+ self._debug['elements_implicit']['arr'].append({'start': self._io.pos()})
4166
+ _t_elements_implicit = Dicom.TDataElementImplicit(self._io, self, self._root)
4167
+ _t_elements_implicit._read()
4168
+ self.elements_implicit.append(_t_elements_implicit)
4169
+ self._debug['elements_implicit']['arr'][len(self.elements_implicit) - 1]['end'] = self._io.pos()
4170
+ i += 1
4171
+
4172
+ self._debug['elements_implicit']['end'] = self._io.pos()
4173
+
4174
+
4175
+ @property
4176
+ def is_forced_implicit(self):
4177
+ if hasattr(self, '_m_is_forced_implicit'):
4178
+ return self._m_is_forced_implicit if hasattr(self, '_m_is_forced_implicit') else None
4179
+
4180
+ self._m_is_forced_implicit = self.tag_group == 65534
4181
+ return self._m_is_forced_implicit if hasattr(self, '_m_is_forced_implicit') else None
4182
+
4183
+ @property
4184
+ def is_long_len(self):
4185
+ if hasattr(self, '_m_is_long_len'):
4186
+ return self._m_is_long_len if hasattr(self, '_m_is_long_len') else None
4187
+
4188
+ self._m_is_long_len = ((self.is_forced_implicit) or (self.vr == u"OB") or (self.vr == u"OD") or (self.vr == u"OF") or (self.vr == u"OL") or (self.vr == u"OW") or (self.vr == u"SQ") or (self.vr == u"UC") or (self.vr == u"UR") or (self.vr == u"UT") or (self.vr == u"UN"))
4189
+ return self._m_is_long_len if hasattr(self, '_m_is_long_len') else None
4190
+
4191
+ @property
4192
+ def is_transfer_syntax_change_implicit(self):
4193
+ if hasattr(self, '_m_is_transfer_syntax_change_implicit'):
4194
+ return self._m_is_transfer_syntax_change_implicit if hasattr(self, '_m_is_transfer_syntax_change_implicit') else None
4195
+
4196
+ self._m_is_transfer_syntax_change_implicit = False
4197
+ return self._m_is_transfer_syntax_change_implicit if hasattr(self, '_m_is_transfer_syntax_change_implicit') else None
4198
+
4199
+ @property
4200
+ def tag(self):
4201
+ if hasattr(self, '_m_tag'):
4202
+ return self._m_tag if hasattr(self, '_m_tag') else None
4203
+
4204
+ self._m_tag = KaitaiStream.resolve_enum(Dicom.Tags, ((self.tag_group << 16) | self.tag_elem))
4205
+ return self._m_tag if hasattr(self, '_m_tag') else None
4206
+
4207
+
4208
+ class TDataElementImplicit(KaitaiStruct):
4209
+ """
4210
+ .. seealso::
4211
+ Source - https://dicom.nema.org/medical/dicom/current/output/html/part05.html#sect_7.1.2
4212
+ """
4213
+ SEQ_FIELDS = ["tag_group", "tag_elem", "vr", "reserved", "value_len", "value", "items", "elements"]
4214
+ def __init__(self, _io, _parent=None, _root=None):
4215
+ self._io = _io
4216
+ self._parent = _parent
4217
+ self._root = _root if _root else self
4218
+ self._debug = collections.defaultdict(dict)
4219
+
4220
+ def _read(self):
4221
+ self._debug['tag_group']['start'] = self._io.pos()
4222
+ self.tag_group = self._io.read_u2le()
4223
+ self._debug['tag_group']['end'] = self._io.pos()
4224
+ self._debug['tag_elem']['start'] = self._io.pos()
4225
+ self.tag_elem = self._io.read_u2le()
4226
+ self._debug['tag_elem']['end'] = self._io.pos()
4227
+ if self.is_forced_explicit:
4228
+ self._debug['vr']['start'] = self._io.pos()
4229
+ self.vr = (self._io.read_bytes(2)).decode(u"ASCII")
4230
+ self._debug['vr']['end'] = self._io.pos()
4231
+
4232
+ if ((self.is_long_len) and (self.is_forced_explicit)) :
4233
+ self._debug['reserved']['start'] = self._io.pos()
4234
+ self.reserved = self._io.read_u2le()
4235
+ self._debug['reserved']['end'] = self._io.pos()
4236
+
4237
+ self._debug['value_len']['start'] = self._io.pos()
4238
+ _on = (self.is_long_len if self.is_forced_explicit else True)
4239
+ if _on == False:
4240
+ self.value_len = self._io.read_u2le()
4241
+ elif _on == True:
4242
+ self.value_len = self._io.read_u4le()
4243
+ self._debug['value_len']['end'] = self._io.pos()
4244
+ if self.value_len != 4294967295:
4245
+ self._debug['value']['start'] = self._io.pos()
4246
+ self.value = self._io.read_bytes(self.value_len)
4247
+ self._debug['value']['end'] = self._io.pos()
4248
+
4249
+ if ((self.vr == u"SQ") and (self.value_len == 4294967295)) :
4250
+ self._debug['items']['start'] = self._io.pos()
4251
+ self.items = []
4252
+ i = 0
4253
+ while True:
4254
+ if not 'arr' in self._debug['items']:
4255
+ self._debug['items']['arr'] = []
4256
+ self._debug['items']['arr'].append({'start': self._io.pos()})
4257
+ _t_items = Dicom.SeqItem(self._io, self, self._root)
4258
+ _t_items._read()
4259
+ _ = _t_items
4260
+ self.items.append(_)
4261
+ self._debug['items']['arr'][len(self.items) - 1]['end'] = self._io.pos()
4262
+ if _.tag_elem == 57565:
4263
+ break
4264
+ i += 1
4265
+ self._debug['items']['end'] = self._io.pos()
4266
+
4267
+ if self.is_transfer_syntax_change_explicit:
4268
+ self._debug['elements']['start'] = self._io.pos()
4269
+ self.elements = []
4270
+ i = 0
4271
+ while not self._io.is_eof():
4272
+ if not 'arr' in self._debug['elements']:
4273
+ self._debug['elements']['arr'] = []
4274
+ self._debug['elements']['arr'].append({'start': self._io.pos()})
4275
+ _t_elements = Dicom.TDataElementExplicit(self._io, self, self._root)
4276
+ _t_elements._read()
4277
+ self.elements.append(_t_elements)
4278
+ self._debug['elements']['arr'][len(self.elements) - 1]['end'] = self._io.pos()
4279
+ i += 1
4280
+
4281
+ self._debug['elements']['end'] = self._io.pos()
4282
+
4283
+
4284
+ @property
4285
+ def tag(self):
4286
+ if hasattr(self, '_m_tag'):
4287
+ return self._m_tag if hasattr(self, '_m_tag') else None
4288
+
4289
+ self._m_tag = KaitaiStream.resolve_enum(Dicom.Tags, ((self.tag_group << 16) | self.tag_elem))
4290
+ return self._m_tag if hasattr(self, '_m_tag') else None
4291
+
4292
+ @property
4293
+ def is_transfer_syntax_change_explicit(self):
4294
+ if hasattr(self, '_m_is_transfer_syntax_change_explicit'):
4295
+ return self._m_is_transfer_syntax_change_explicit if hasattr(self, '_m_is_transfer_syntax_change_explicit') else None
4296
+
4297
+ self._m_is_transfer_syntax_change_explicit = self.p_is_transfer_syntax_change_explicit
4298
+ return self._m_is_transfer_syntax_change_explicit if hasattr(self, '_m_is_transfer_syntax_change_explicit') else None
4299
+
4300
+ @property
4301
+ def is_long_len(self):
4302
+ if hasattr(self, '_m_is_long_len'):
4303
+ return self._m_is_long_len if hasattr(self, '_m_is_long_len') else None
4304
+
4305
+ self._m_is_long_len = ((self.is_forced_explicit) and ( ((self.vr == u"OB") or (self.vr == u"OD") or (self.vr == u"OF") or (self.vr == u"OL") or (self.vr == u"OW") or (self.vr == u"SQ") or (self.vr == u"UC") or (self.vr == u"UR") or (self.vr == u"UT") or (self.vr == u"UN")) ))
4306
+ return self._m_is_long_len if hasattr(self, '_m_is_long_len') else None
4307
+
4308
+ @property
4309
+ def p_is_transfer_syntax_change_explicit(self):
4310
+ if hasattr(self, '_m_p_is_transfer_syntax_change_explicit'):
4311
+ return self._m_p_is_transfer_syntax_change_explicit if hasattr(self, '_m_p_is_transfer_syntax_change_explicit') else None
4312
+
4313
+ self._m_p_is_transfer_syntax_change_explicit = self.value == b"\x31\x2E\x32\x2E\x38\x34\x30\x2E\x31\x30\x30\x30\x38\x2E\x31\x2E\x32\x2E\x31\x00"
4314
+ return self._m_p_is_transfer_syntax_change_explicit if hasattr(self, '_m_p_is_transfer_syntax_change_explicit') else None
4315
+
4316
+ @property
4317
+ def is_forced_explicit(self):
4318
+ if hasattr(self, '_m_is_forced_explicit'):
4319
+ return self._m_is_forced_explicit if hasattr(self, '_m_is_forced_explicit') else None
4320
+
4321
+ self._m_is_forced_explicit = self.tag_group == 2
4322
+ return self._m_is_forced_explicit if hasattr(self, '_m_is_forced_explicit') else None
4323
+
4324
+
4325
+ class SeqItem(KaitaiStruct):
4326
+ SEQ_FIELDS = ["tag_group", "tag_elem", "value_len", "value", "items"]
4327
+ def __init__(self, _io, _parent=None, _root=None):
4328
+ self._io = _io
4329
+ self._parent = _parent
4330
+ self._root = _root if _root else self
4331
+ self._debug = collections.defaultdict(dict)
4332
+
4333
+ def _read(self):
4334
+ self._debug['tag_group']['start'] = self._io.pos()
4335
+ self.tag_group = self._io.read_bytes(2)
4336
+ self._debug['tag_group']['end'] = self._io.pos()
4337
+ if not self.tag_group == b"\xFE\xFF":
4338
+ raise kaitaistruct.ValidationNotEqualError(b"\xFE\xFF", self.tag_group, self._io, u"/types/seq_item/seq/0")
4339
+ self._debug['tag_elem']['start'] = self._io.pos()
4340
+ self.tag_elem = self._io.read_u2le()
4341
+ self._debug['tag_elem']['end'] = self._io.pos()
4342
+ self._debug['value_len']['start'] = self._io.pos()
4343
+ self.value_len = self._io.read_u4le()
4344
+ self._debug['value_len']['end'] = self._io.pos()
4345
+ if self.value_len != 4294967295:
4346
+ self._debug['value']['start'] = self._io.pos()
4347
+ self.value = self._io.read_bytes(self.value_len)
4348
+ self._debug['value']['end'] = self._io.pos()
4349
+
4350
+ if self.value_len == 4294967295:
4351
+ self._debug['items']['start'] = self._io.pos()
4352
+ self.items = []
4353
+ i = 0
4354
+ while True:
4355
+ if not 'arr' in self._debug['items']:
4356
+ self._debug['items']['arr'] = []
4357
+ self._debug['items']['arr'].append({'start': self._io.pos()})
4358
+ _t_items = Dicom.TDataElementExplicit(self._io, self, self._root)
4359
+ _t_items._read()
4360
+ _ = _t_items
4361
+ self.items.append(_)
4362
+ self._debug['items']['arr'][len(self.items) - 1]['end'] = self._io.pos()
4363
+ if ((_.tag_group == 65534) and (_.tag_elem == 57357)) :
4364
+ break
4365
+ i += 1
4366
+ self._debug['items']['end'] = self._io.pos()
4367
+
4368
+
4369
+
4370
+