{% include 'header.html' %}
{% include 'navigation.html' %}
Exes
Exe
Sections
{% for exe in exes %}
{{exe['name']}}
name
raw size
virt size
diff
{% for section in exe['sections'] %}
{{section['name']}}
{{section['raw_size']}}
{{section['virt_size']}}
{{section['raw_size'] - section['virt_size']}}
{% endfor %}
{% endfor %}