1
0
mirror of https://github.com/strongdm/comply synced 2024-11-17 05:14:55 +00:00

Refactor "Controls" to "Criterion" so we can add the "Program Controls" model in next

This commit is contained in:
Craine Runton 2020-09-15 16:21:16 -05:00
parent 84e439e7cc
commit a66764470c
9 changed files with 88 additions and 111 deletions

View File

@ -76,17 +76,17 @@ html lang=en
.columns.is-vcentered .columns.is-vcentered
.column.is-one-third .column.is-one-third
div div
p.subtitle.is-3.has-text-centered Control Tracking p.subtitle.is-3.has-text-centered CriterionTracking
.column.has-text-centered .column.has-text-centered
div div
p.heading Satisfied Criteria p.heading Satisfied Criteria
p.title p.title
{{.Stats.ControlsSatisfied}} {{.Stats.CriteriaSatisfied}}
.column.has-text-centered .column.has-text-centered
div div
p.heading Total Controls p.heading Total Controls
p.title p.title
{{.Stats.ControlsTotal}} {{.Stats.CriteriaTotal}}
.columns.is-vcentered .columns.is-vcentered
.column.is-one-third .column.is-one-third
div div
@ -196,14 +196,14 @@ html lang=en
table.table.is-size-4.is-fullwidth table.table.is-size-4.is-fullwidth
thead thead
tr tr
th Control Key th CriterionKey
th Name th Name
th Satisfied? th Satisfied?
th Satisfied By th Satisfied By
tbody tbody
{{range .Controls }} {{range .Criteria}}
tr tr
td {{.ControlKey}} td {{.criteriaKey}}
td td
strong {{.Name}} strong {{.Name}}
.subtitle {{.Description}} .subtitle {{.Description}}

View File

@ -12,7 +12,7 @@ import (
var todoCommand = cli.Command{ var todoCommand = cli.Command{
Name: "todo", Name: "todo",
Usage: "list declared vs satisfied compliance controls", Usage: "list declared vs satisfied compliance criteria",
Action: todoAction, Action: todoAction,
Before: projectMustExist, Before: projectMustExist,
} }
@ -24,42 +24,42 @@ func todoAction(c *cli.Context) error {
} }
w := tablewriter.NewWriter(os.Stdout) w := tablewriter.NewWriter(os.Stdout)
w.SetHeader([]string{"Framework", "Control", "Satisfied?", "Name"}) w.SetHeader([]string{"Framework", "Criterion", "Satisfied?", "Name"})
type row struct { type row struct {
standard string framework string
controlKey string criterionKey string
satisfied string satisfied string
controlName string criterionName string
} }
satisfied := model.ControlsSatisfied(d) satisfied := model.CriteriaSatisfied(d)
var rows []row var rows []row
for _, std := range d.Frameworks { for _, std := range d.Frameworks {
for id, c := range std.Controls { for id, c := range std.Criteria{
sat := "NO" sat := "NO"
if _, ok := satisfied[id]; ok { if _, ok := satisfied[id]; ok {
sat = color.GreenString("YES") sat = color.GreenString("YES")
} }
rows = append(rows, row{ rows = append(rows, row{
standard: std.Name, framework: std.Name,
controlKey: id, criterionKey: id,
satisfied: sat, satisfied: sat,
controlName: c.Name, criterionName: c.Name,
}) })
} }
} }
sort.Slice(rows, func(i, j int) bool { sort.Slice(rows, func(i, j int) bool {
return rows[i].controlKey < rows[j].controlKey return rows[i].criterionKey < rows[j].criterionKey
}) })
w.SetAutoWrapText(false) w.SetAutoWrapText(false)
for _, r := range rows { for _, r := range rows {
w.Append([]string{r.standard, r.controlKey, r.satisfied, r.controlName}) w.Append([]string{r.framework, r.criterionKey, r.satisfied, r.criterionName})
} }
w.Render() w.Render()

View File

@ -1,6 +1,6 @@
package model package model
type Control struct { type Criterion struct {
Family string `yaml:"family"` Family string `yaml:"family"`
Name string `yaml:"name"` Name string `yaml:"name"`
Description string `yaml:"description"` Description string `yaml:"description"`
@ -8,11 +8,11 @@ type Control struct {
type Framework struct { type Framework struct {
Name string `yaml:"name"` Name string `yaml:"name"`
Controls map[string]Control `yaml:",inline"` Criteria map[string]Criterion `yaml:",inline"`
} }
// ControlsSatisfied determines the unique controls currently satisfied by all Narratives, Policies, and Procedures // CriteriaSatisfied determines the unique criteria currently satisfied by all Narratives, Policies, and Procedures
func ControlsSatisfied(data *Data) map[string][]string { func CriteriaSatisfied(data *Data) map[string][]string {
satisfied := make(map[string][]string) satisfied := make(map[string][]string)
appendSatisfaction := func(in map[string][]string, k string, v string) []string { appendSatisfaction := func(in map[string][]string, k string, v string) []string {
@ -25,22 +25,22 @@ func ControlsSatisfied(data *Data) map[string][]string {
} }
for _, n := range data.Narratives { for _, n := range data.Narratives {
for _, controlKeys := range n.Satisfies { for _, criteriaKeys := range n.Satisfies {
for _, key := range controlKeys { for _, key := range criteriaKeys {
satisfied[key] = appendSatisfaction(satisfied, key, n.OutputFilename) satisfied[key] = appendSatisfaction(satisfied, key, n.OutputFilename)
} }
} }
} }
for _, n := range data.Policies { for _, n := range data.Policies {
for _, controlKeys := range n.Satisfies { for _, criteriaKeys := range n.Satisfies {
for _, key := range controlKeys { for _, key := range criteriaKeys {
satisfied[key] = appendSatisfaction(satisfied, key, n.OutputFilename) satisfied[key] = appendSatisfaction(satisfied, key, n.OutputFilename)
} }
} }
} }
for _, n := range data.Procedures { for _, n := range data.Procedures {
for _, controlKeys := range n.Satisfies { for _, criteriaKeys := range n.Satisfies {
for _, key := range controlKeys { for _, key := range criteriaKeys {
satisfied[key] = appendSatisfaction(satisfied, key, n.OutputFilename) satisfied[key] = appendSatisfaction(satisfied, key, n.OutputFilename)
} }
} }

View File

@ -16,8 +16,8 @@ type project struct {
} }
type stats struct { type stats struct {
ControlsTotal int CriteriaTotal int
ControlsSatisfied int CriteriaSatisfied int
ProcedureTotal int ProcedureTotal int
ProcedureOpen int ProcedureOpen int
@ -38,13 +38,13 @@ type renderData struct {
Procedures []*model.Procedure Procedures []*model.Procedure
Frameworks []*model.Framework Frameworks []*model.Framework
Tickets []*model.Ticket Tickets []*model.Ticket
Controls []*control Criteria []*criterion
Links *model.TicketLinks Links *model.TicketLinks
} }
type control struct { type criterion struct {
Framework string Framework string
ControlKey string CriteriaKey string
Name string Name string
Description string Description string
Satisfied bool Satisfied bool
@ -63,15 +63,15 @@ func load() (*model.Data, *renderData, error) {
Name: fmt.Sprintf("%s Compliance Program", cfg.Name), Name: fmt.Sprintf("%s Compliance Program", cfg.Name),
} }
satisfied := model.ControlsSatisfied(modelData) satisfied := model.CriteriaSatisfied(modelData)
controls := make([]*control, 0) criteria := make([]*criterion, 0)
for _, framework := range modelData.Frameworks { for _, framework := range modelData.Frameworks {
for key, c := range framework.Controls { for key, c := range framework.Criteria{
satisfactions, ok := satisfied[key] satisfactions, ok := satisfied[key]
satisfied := ok && len(satisfactions) > 0 satisfied := ok && len(satisfactions) > 0
controls = append(controls, &control{ criteria = append(criteria, &criterion{
Framework: framework.Name, Framework: framework.Name,
ControlKey: key, CriteriaKey: key,
Name: c.Name, Name: c.Name,
Description: c.Description, Description: c.Description,
Satisfied: satisfied, Satisfied: satisfied,
@ -79,8 +79,8 @@ func load() (*model.Data, *renderData, error) {
}) })
} }
} }
sort.Slice(controls, func(i, j int) bool { sort.Slice(criteria, func(i, j int) bool {
return controls[i].ControlKey < controls[j].ControlKey return criteria[i].CriteriaKey < criteria[j].CriteriaKey
}) })
rd := &renderData{} rd := &renderData{}
@ -92,7 +92,7 @@ func load() (*model.Data, *renderData, error) {
rd.Links = &model.TicketLinks{} rd.Links = &model.TicketLinks{}
rd.Project = project rd.Project = project
rd.Name = project.OrganizationName rd.Name = project.OrganizationName
rd.Controls = controls rd.Criteria= criteria
ts, err := config.Config().TicketSystem() ts, err := config.Config().TicketSystem()
if err != nil { if err != nil {
@ -121,13 +121,13 @@ func loadWithStats() (*model.Data, *renderData, error) {
func addStats(modelData *model.Data, renderData *renderData) { func addStats(modelData *model.Data, renderData *renderData) {
stats := &stats{} stats := &stats{}
satisfied := model.ControlsSatisfied(modelData) satisfied := model.CriteriaSatisfied(modelData)
for _, std := range renderData.Frameworks { for _, std := range renderData.Frameworks {
stats.ControlsTotal += len(std.Controls) stats.CriteriaTotal += len(std.Criteria)
for controlKey := range std.Controls { for criteriaKey := range std.Criteria{
if _, ok := satisfied[controlKey]; ok { if _, ok := satisfied[criteriaKey]; ok {
stats.ControlsSatisfied++ stats.CriteriaSatisfied++
} }
} }
} }

View File

@ -114,7 +114,7 @@ func preprocessDoc(data *renderData, pol *model.Document, fullPath string) error
for standard, keys := range pol.Satisfies { for standard, keys := range pol.Satisfies {
rows += fmt.Sprintf("| %s | %s |\n", standard, strings.Join(keys, ", ")) rows += fmt.Sprintf("| %s | %s |\n", standard, strings.Join(keys, ", "))
} }
satisfiesTable = fmt.Sprintf("|Framework|Controls Satisfied|\n|-------+--------------------------------------------|\n%s\nTable: Control satisfaction\n", rows) satisfiesTable = fmt.Sprintf("|Framework|Criteria Satisfied|\n|-------+--------------------------------------------|\n%s\nTable: Criterion satisfaction\n", rows)
} }
if len(pol.Revisions) > 0 { if len(pol.Revisions) > 0 {

View File

@ -53,8 +53,7 @@
// themes/comply-soc2/procedures/onboarding.md // themes/comply-soc2/procedures/onboarding.md
// themes/comply-soc2/procedures/patch.md // themes/comply-soc2/procedures/patch.md
// themes/comply-soc2/procedures/workstation.md // themes/comply-soc2/procedures/workstation.md
// themes/comply-soc2/standards/README.md // themes/comply-soc2/standards/.gitkeep
// themes/comply-soc2/standards/TSC-2017.yml
// themes/comply-soc2/templates/default.latex // themes/comply-soc2/templates/default.latex
// themes/comply-soc2/templates/index.ace // themes/comply-soc2/templates/index.ace
// DO NOT EDIT! // DO NOT EDIT!
@ -305,7 +304,7 @@ func complyBlankTemplatesDefaultLatex() (*asset, error) {
return a, nil return a, nil
} }
var _complyBlankTemplatesIndexAce = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x59\x6d\x6f\x1b\xb9\x11\xfe\xee\x5f\x31\xd8\x7c\x90\x8c\x58\x94\x9d\x2b\xae\x87\xbb\xee\x15\x39\x3b\x41\x83\xcb\xc5\x41\x13\x14\x28\x82\x43\x41\x91\xb3\x5a\x5a\x5c\x72\x43\xce\xca\xd6\x29\xfe\xef\x05\xb9\x2f\x5a\xad\x24\xdb\x68\x94\xa2\xa8\x3f\xc8\x14\x5f\xe6\x99\x19\x3e\x1c\xce\x50\x29\x48\x2b\x68\x55\x22\xe4\x54\xe8\x93\xf0\x01\x9a\x9b\x79\x8a\xe6\x04\x20\x47\x2e\x4f\x00\x00\x0a\x24\x0e\x22\xe7\xce\x23\xa5\x15\x65\x93\x1f\x62\x37\x29\xd2\x08\xeb\x35\x7b\xef\xec\x0d\x0a\x62\xef\x78\x81\xf7\xf7\x71\x4c\x2b\xb3\x00\x87\x3a\x4d\x3c\xad\x34\xfa\x1c\x91\x12\xc8\x1d\x66\x69\x92\x13\x95\xfe\xc7\xe9\x54\x48\x73\xe3\x99\xd0\xb6\x92\x99\xe6\x0e\x99\xb0\xc5\x94\xdf\xf0\xbb\xa9\x56\x33\x3f\x9d\x55\xba\xe0\xd3\x73\xf6\x3d\x7b\x31\x15\xbe\xf9\xce\x0a\x65\x98\xf0\x3e\x39\x2a\x8a\xbf\xe5\x24\xf2\x06\xcb\x73\x23\x3d\x59\x83\xfd\xb1\x6d\x5c\x2f\x9c\x2a\x09\x82\xe7\xd2\x84\xf0\x8e\xa6\x37\x7c\xc9\xeb\xde\x04\xbc\x13\x4f\x86\x2f\x6c\x81\x86\xd8\x8d\x9f\xbe\x60\x2f\x5e\xb0\xf3\xb6\x23\xc0\xdd\x1c\x1d\x4d\x73\x42\x37\xbd\x60\x01\x28\xb6\xbf\x11\x4e\xe9\x90\x68\x25\x9c\x35\xd3\x73\x76\x71\xc1\xce\x7b\x3d\x5b\x90\x91\x59\x86\x17\x98\x26\x4b\x85\xb7\xa5\x75\x94\x80\xb0\x86\xd0\x50\x9a\xdc\x2a\x49\x79\x2a\x71\xa9\x04\x4e\xe2\x97\x33\x50\x46\x91\xe2\x7a\xe2\x05\xd7\x98\x5e\xd4\x62\x52\x10\xde\x37\xad\x8d\xce\xb1\x03\x02\xc5\xab\xe8\x53\x2e\xe5\xab\x25\x1a\x7a\xab\x3c\xa1\x41\x37\x4e\xae\xae\x7f\xbb\xac\xc1\xde\x5a\x2e\x51\x26\x67\x90\x55\x46\x90\xb2\x66\x8c\x61\xea\x29\xac\x1b\x29\x3d\x39\x9f\x2b\x74\xab\x0f\xa8\x51\x90\x75\x2f\xb5\x1e\x8f\x58\x30\x6c\x74\xca\x32\xeb\x5e\x71\x91\x8f\x37\x42\x74\x5f\x02\x00\x6a\xa6\x8c\x41\xf7\xb7\x8f\xbf\xbd\x85\x14\x6a\xaf\x5c\x06\xaf\x90\xfd\x40\x4e\x99\xf9\x78\x9c\x24\xcf\xfb\xd3\x4e\x19\x39\x55\x8c\x4f\xcf\xc8\x55\x78\x0a\xd3\x29\x7c\x3f\xc9\x14\x6a\x09\x78\x57\x3a\xf4\x5e\x59\xe3\x3b\x88\xfb\xd3\x93\xae\xd1\xb4\x5a\x65\xc0\xe7\xf6\x76\x1c\x9c\xdd\xd7\x49\x65\x30\xce\x95\x27\xeb\x56\xcc\x61\xa9\xb9\xc0\x0f\xc4\x09\xb7\xf5\x06\xd8\x37\x67\x6c\x2a\xad\xcf\xa0\xfe\x1c\x3d\x1b\x3d\x8f\xc2\x37\xba\x9c\x74\xcd\x25\x77\xa0\x08\x0b\x0f\xe9\xc6\x8f\x73\xa4\x57\x1a\x43\xd3\xff\xb2\xba\xd4\xdc\xfb\x10\x40\xc6\x23\xb2\xe5\xc4\xf0\xe5\x68\x23\x29\xb3\x0e\xc6\x51\x46\x7a\xfe\x13\xa8\xbf\x44\x51\x4c\xa3\x99\x53\xfe\x13\xa8\xe7\xcf\xb7\xb5\x6d\xd1\x20\xad\x41\x3f\xa9\xdf\x7b\xa3\xc1\xe2\xd0\xcd\x88\xcf\x03\x20\xa4\x69\x0a\xc9\xdb\x37\xc9\xd0\xe4\xe9\x14\x0c\x5f\xaa\x39\x8f\xde\x23\x3e\xf3\x5b\xc3\x9d\x1c\x11\x54\x0f\xa4\x62\x81\xb9\x5c\x19\x5f\x7b\x79\x28\x0f\x60\x30\x9d\x4b\x39\x1e\x29\x3f\xe1\x82\xd4\x12\x7b\xf6\x46\xef\x01\x6a\x8f\x8f\x89\x70\x58\xd8\x25\x3e\x20\xe5\xe4\x11\x89\xd3\x29\x78\x8c\xfc\x38\x60\x9d\x92\xd1\x41\x43\xde\x3c\xa6\x4d\xae\xa4\x44\xf3\x1f\xd9\xd4\xba\x65\xbf\x88\x93\x7d\xed\xb6\x15\xfe\xcf\xac\x5c\xd5\xf1\xac\xb6\x8b\xe5\xe8\x2c\x53\x7e\x52\x3a\x55\x70\xb7\x0a\x4d\x5f\x70\xad\x9b\x35\x71\x7c\xd2\xad\x8a\x5d\xcd\x46\xa2\xeb\xa1\xe5\x17\xec\xa1\x1b\xaf\xfe\x2b\x99\xaf\x66\xf5\xb4\xf7\x56\x2b\xb1\x3a\x83\xf7\xce\x0a\x94\x95\xc3\x33\xe0\x46\xc2\xcb\x4a\x2a\x82\x70\x7e\x2a\xbf\xa5\x41\x66\x2d\x75\x92\x0c\x5f\xb2\xc0\xb8\xa0\xec\xcc\xde\xa1\x0c\x8d\xac\xd2\x3a\x86\xc1\x1e\xe0\x5e\x55\x01\x2a\x1d\xcd\x54\x7f\xe0\xe4\x4f\x03\x6f\x6b\xc5\x9a\x13\xc6\xec\x12\x5d\x88\xbb\x83\x19\x00\x9e\x9c\x35\xf3\x9d\x6e\x00\x0e\xd6\x08\xad\xc4\x22\x4d\x36\x81\xf6\xc7\x18\x59\x46\xad\xb4\xd1\x69\x02\xd7\xfb\x25\xf7\xb0\x0d\x77\x8e\x07\xc6\xfa\xe3\xa0\x6f\xe4\x05\xfc\x77\x87\xa4\xf7\x34\x28\xc3\x06\xa9\x63\xe1\xb7\xd2\x02\xfa\xfb\xfd\x92\xfb\xd8\x2d\x29\x8e\x85\xde\xc9\x8b\xf8\x87\xa4\xf7\x34\xf0\xc4\x8d\xe4\x4e\x1e\x49\x81\xcc\xf1\x02\x6f\xad\x5b\x44\x05\x5e\x77\xdf\x06\x62\xa6\x7d\x15\x70\xa9\x24\x1a\x81\x3b\x73\x1e\x86\x6a\x97\x05\xa0\x57\x4d\x1b\xfe\xc1\x2b\x5d\x1f\x9f\x67\x2d\x0f\x59\x1b\x00\x5a\xbc\xee\xa8\xb0\x26\xc5\x68\x80\x67\xda\x8a\xc5\xe7\xca\xd2\x46\x93\xfc\x3b\xf8\x98\x2b\x0f\x5e\x11\x86\x84\xc4\x5b\xad\x24\x27\xf4\xc0\xb5\xee\xae\x30\x1f\x92\x4f\x4e\x28\x81\x2c\x50\x7e\x38\x34\xe4\xed\xe9\x64\xc2\xea\xaa\x30\xf1\x5c\x2f\x05\x1a\x42\x87\xb2\x1f\x77\xc2\x68\x18\xb4\x06\x27\x94\x2b\x27\x7b\xce\x91\x6a\xb9\xe5\xaa\x4d\xb0\x09\x2b\xbe\x63\x39\xf7\x93\x90\xb7\x4d\x5a\xc1\x10\xb2\x1b\x67\x35\x7c\x74\x5c\x2c\x54\x6f\x53\x5b\xa4\x9d\x25\x0f\xc2\x85\x8a\x40\x99\x39\x7c\xe0\xa4\x7c\xa6\x36\x00\x7e\x30\x31\x2a\x35\xd8\xd6\xf5\x9a\x85\xa8\xe7\x59\xbb\xa6\x93\xd2\x8b\xa0\x5f\xa7\xd7\x47\x4b\x5c\x7f\x95\x4e\x51\x42\xa7\xcf\x7f\x79\xb7\xba\x63\x7b\xec\xfd\x7a\x19\x53\x03\xf8\xa8\xc4\x02\xe9\x29\x7e\xe1\x40\xdc\xcd\x91\xd2\x7f\xcd\x34\x37\x8b\xa6\xa4\x5a\xaf\xd9\x5b\x65\x16\x9e\x75\x8a\x5e\x97\x68\xee\xef\x93\x9d\x58\xd1\xf9\x75\x30\xf3\x48\xf6\x5c\x6b\x89\x9e\x1a\x7b\x9e\x64\xce\x1e\x85\xa2\x8c\x2b\xbe\xf2\xf7\xf7\x20\xf9\xca\x1f\x69\xcf\x1f\x34\x69\x87\x05\x4d\x3a\x70\xe4\xfd\x0e\xce\x86\xbf\xe3\xe7\x0a\xfd\x31\xb6\x3b\xea\xf8\xe8\x56\xf7\x66\x1d\xf5\x38\x1f\xd9\x8e\x97\x5a\x3f\x6e\xc6\xd1\xc2\x40\x6f\x90\x6e\x6d\x3d\xe8\x1f\x74\xc7\x14\x4a\x67\xe7\xa1\xb0\x63\x5d\x63\x93\xbc\xc2\x92\xeb\x0a\xd3\x6d\x6d\x2f\xb5\xf5\x21\x8a\x42\xc1\xef\xd2\xc3\x86\x3c\xdb\xa4\x48\x5f\x77\x35\xf6\xf3\xdd\x2d\x47\xd6\x99\xc3\xa1\xe4\xeb\x4b\xb0\x2c\xdc\xd7\xc0\x0d\xb4\x97\x34\xd8\x2c\xde\x9c\xd6\xcd\xb9\x51\x7f\xd4\xb5\x56\xc8\x93\x43\xa7\xb0\x45\xa9\x15\x0f\xf7\x3b\x9a\xa5\x72\xd6\xc4\xc2\xb1\x91\x4a\x7c\xa6\x91\xd5\x9f\xbb\xc9\x2e\x75\xcf\x57\xcd\xf7\xed\x04\x99\x72\x08\x37\xf4\xb0\xef\x65\xa8\xe4\x57\xc5\xb0\xfb\xfd\xd5\xeb\x8d\xe0\xad\x52\x21\x30\xc7\x71\x33\x47\x60\x1b\xb3\x61\xab\x26\x18\x22\xcb\x40\xb6\x9d\xca\xa1\x1d\x68\x34\xd8\x19\xdb\xa1\x7a\x24\xf7\x7a\xcd\xae\x2b\x2a\x2b\x7a\xad\x34\x9a\x28\x73\xfb\x0c\xec\x23\xfa\x70\xc5\x96\x31\x68\xda\xfb\xf8\x59\x9b\xd2\x7e\x5b\xb6\xec\x4d\x96\xbf\xc0\x3c\x30\xc4\x44\x1a\xcc\x30\xe7\x4b\x65\x5d\xe0\x4a\xe7\x3a\xc0\xa2\xd4\x76\x85\x21\x25\x33\x32\x3e\x1a\x39\x2e\xc8\x3a\xff\xbf\xca\x8f\xd6\xd0\xff\x17\x76\x74\x45\xc6\x37\xe6\xc7\xfe\x62\x26\x44\x13\x0c\x75\xc1\x0c\xc1\x97\x28\x54\xa6\x04\x78\xc2\xd2\x03\xe5\x9c\x80\x3b\x04\xe2\x0b\x34\xa0\x0c\x38\xf4\xa5\x35\x1e\x43\x9e\xbe\xc0\x15\xc4\xc7\xbd\x6f\x4a\x94\x37\x57\xc3\x9e\x0f\x22\x47\x59\x69\x84\x71\xd8\x43\xc8\xac\x2b\x38\x9d\x3e\x81\x36\x9d\xfd\x5f\x43\x9c\x37\x57\x83\xee\xf5\x5a\x65\xc0\x2e\x9d\x35\x3b\xf3\xe3\x73\x66\x58\xb4\x67\x74\xbd\x46\xed\xf7\x40\x5c\x1b\x90\x58\x70\x23\x87\xb3\x8d\x3c\x4c\xa1\xae\x06\xfd\xb6\x0c\x3a\x50\x8d\x7e\x69\x78\xb3\x8a\x41\xa6\x9b\x04\x97\x4e\x11\x3a\xc5\xc1\x77\x65\xce\x6c\x35\xbc\x8f\xe2\xdd\xcc\x8b\x07\x29\xb4\xff\xcd\xe6\x71\x3e\xb5\x55\xdb\xaf\xb8\x7a\x0a\xd5\xba\x3a\xea\xaf\x07\x47\xe0\x97\xd5\xe3\x44\x6b\x6b\xa0\x27\xd0\xac\x99\xfa\x2b\xae\x1e\x8b\x44\xcd\x16\xec\xa7\x26\xc0\xe6\xb9\x6c\xbd\x66\x57\x58\xd7\xf9\x6a\x0f\xeb\x02\x59\xf7\x15\x8c\x35\x68\xf4\x79\x25\x04\x7a\x0f\xff\x1c\x04\x8a\x43\x8c\x7d\x67\x1f\xa1\xea\x1e\x6b\x3a\x5f\x75\xaa\xfc\x32\xf4\x00\x00\xef\x18\xf0\xe7\x2e\x0c\x3f\x25\xf0\xee\x08\x3a\x7c\x7a\x62\x57\x66\x2d\xa1\x63\xf5\xbf\x4d\xaa\x3a\x7c\x0e\x6c\x4f\xd0\x83\x59\x67\xd9\x7f\xba\xb8\xee\xe5\x62\xcd\x65\x7b\x69\x4d\xa6\x24\x1a\x52\x5c\xc3\x8b\xf3\x8b\x1f\x4e\xf6\xfc\xd6\xa2\x32\x18\xdf\x2a\x23\xed\x2d\xd3\x56\xf0\xfa\xf1\x95\xfb\x3c\x4d\x93\xde\xe3\xfa\xf0\xb1\x30\x76\x0f\x5e\x86\x97\xdc\x41\x58\x79\x69\x8b\xd2\x9a\xf8\xd2\x92\xc2\x3e\xd1\xcc\x97\x5a\xd1\x78\xf4\xac\x7b\x26\x8e\x3f\x68\x6c\x2d\x6d\x7e\x28\xf8\xf9\xa2\xff\x7e\x1d\x10\x42\x01\xa8\x4c\x9d\x72\xa6\x03\xbc\x4f\x17\x9b\xdf\x0c\x82\xc8\x4f\x49\xab\x71\x72\x96\x6c\x12\xe9\xe4\x2c\x69\xb3\xa4\xd0\xec\x42\x75\x72\x96\x74\xc1\x2d\xf9\x9d\x29\x23\xf1\xee\x3a\x1b\xf7\x10\x4f\xe1\xe7\x14\xce\xb7\x9f\xd4\xa3\x6b\xfa\x73\xba\xb1\xfe\x03\x77\xf8\xfc\x77\x00\x00\x00\xff\xff\x12\xf8\xc3\x24\xba\x1d\x00\x00") var _complyBlankTemplatesIndexAce = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x59\x6d\x6f\x23\xb7\xf1\x7f\xef\x4f\x31\xd8\x7b\x21\x19\x67\x51\xf6\xe5\x8f\xfc\x83\xa4\x9b\xc2\x67\xdf\xa1\x87\x38\x67\xa3\x36\x0a\x14\x87\xa0\xa0\xc8\x59\x2d\x2d\x2e\xb9\x47\x72\x65\x2b\x8a\xbf\x7b\x41\xee\xa3\x56\x2b\xcb\xc8\xc9\x45\x51\xbf\x90\x29\x3e\xcc\x6f\x66\xf8\xe3\x70\x86\x8a\x81\x6b\xe6\x56\x39\x42\xea\x32\x79\xe4\x3f\x40\x52\x35\x8f\x51\x1d\x01\xa4\x48\xf9\x11\x00\x40\x86\x8e\x02\x4b\xa9\xb1\xe8\xe2\xc2\x25\x93\x1f\x42\xb7\x13\x4e\x22\xac\xd7\xe4\xc6\xe8\x7b\x64\x8e\x7c\xa6\x19\x3e\x3d\x85\x31\x29\xd4\x02\x0c\xca\x38\xb2\x6e\x25\xd1\xa6\x88\x2e\x82\xd4\x60\x12\x47\xa9\x73\xb9\xfd\x71\x3a\x65\x5c\xdd\x5b\xc2\xa4\x2e\x78\x22\xa9\x41\xc2\x74\x36\xa5\xf7\xf4\x71\x2a\xc5\xcc\x4e\x67\x85\xcc\xe8\xf4\x94\x7c\x4f\xde\x4d\x99\xad\xbe\x93\x4c\x28\xc2\xac\x8d\x0e\x8a\x62\x1f\xa8\x63\x69\x85\x65\xa9\xe2\xd6\x69\x85\xdd\xb1\x4d\x5c\xcb\x8c\xc8\x1d\x78\xcf\xc5\x91\xc3\x47\x37\xbd\xa7\x4b\x5a\xf6\x46\x60\x0d\x7b\x31\x7c\xa6\x33\x54\x8e\xdc\xdb\xe9\x3b\xf2\xee\x1d\x39\xad\x3b\x3c\xdc\xfd\xc1\xd1\x24\x75\x68\xa6\x67\xc4\x03\x85\xf6\x2b\xe1\xe4\x06\x9d\x5b\x31\xa3\xd5\xf4\x94\x9c\x9d\x91\xd3\x4e\xcf\x06\x64\x60\x96\xa2\x19\xc6\xd1\x52\xe0\x43\xae\x8d\x8b\x80\x69\xe5\x50\xb9\x38\x7a\x10\xdc\xa5\x31\xc7\xa5\x60\x38\x09\x5f\x4e\x40\x28\xe1\x04\x95\x13\xcb\xa8\xc4\xf8\xac\x14\x13\x03\xb3\xb6\x6a\xb5\x3a\x87\x0e\xf0\x14\x2f\x82\x4f\x29\xe7\x1f\x96\xa8\xdc\x95\xb0\x0e\x15\x9a\x71\x74\x79\xfd\xeb\x45\x09\x76\xa5\x29\x47\x1e\x9d\x40\x52\x28\xe6\x84\x56\x63\xf4\x53\x8f\x61\x5d\x49\xe9\xc8\xf9\x5a\xa0\x59\xdd\xa2\x44\xe6\xb4\x39\x97\x72\x3c\x22\xde\xb0\xd1\x31\x49\xb4\xf9\x40\x59\x3a\x6e\x85\xc8\xae\x04\x00\x94\x44\x28\x85\xe6\x6f\x77\xbf\x5e\x41\x0c\xa5\x57\x2e\xbc\x57\x9c\xbe\x75\x46\xa8\xf9\x78\x1c\x45\x6f\xbb\xd3\x8e\x89\x33\x22\x1b\x1f\x9f\x38\x53\xe0\x31\x4c\xa7\xf0\xfd\x24\x11\x28\x39\xe0\x63\x6e\xd0\x5a\xa1\x95\x6d\x20\x9e\x8e\x8f\x9a\x46\xd5\xaa\x95\x01\x9b\xea\x87\xb1\x77\x76\x57\x27\x91\xc0\x38\x15\xd6\x69\xb3\x22\x06\x73\x49\x19\xde\x3a\xea\x70\x53\x6f\x80\xa1\x39\x63\x55\x48\x79\x02\xe5\xe7\xe8\xcd\xe8\x6d\x10\xde\xea\x72\xd4\x34\x97\xd4\x80\x70\x98\x59\x88\x5b\x3f\xce\xd1\x7d\x90\xe8\x9b\xf6\xfd\xea\x42\x52\x6b\x7d\x00\x19\x8f\x9c\xce\x27\x8a\x2e\x47\xad\xa4\x44\x1b\x18\x07\x19\xf1\xe9\x4f\x20\xfe\x12\x44\x11\x89\x6a\xee\xd2\x9f\x40\xbc\x7d\xbb\xa9\x6d\x8d\x06\x71\x09\xfa\x45\xfc\xd6\x19\xf5\x16\xfb\x6e\xe2\xe8\xdc\x03\x42\x1c\xc7\x10\x5d\x7d\x8a\xfa\x26\x4f\xa7\xa0\xe8\x52\xcc\x69\xf0\x9e\xa3\x33\xbb\x31\xdc\xc8\x61\x5e\x75\x4f\x2a\xe2\x99\x4b\x85\xb2\xa5\x97\xfb\xf2\x00\x7a\xd3\x29\xe7\xe3\x91\xb0\x13\xca\x9c\x58\x62\xc7\xde\xe0\x3d\x40\x69\x71\x9f\x08\x83\x99\x5e\xe2\x33\x52\x8e\xf6\x48\x9c\x4e\xc1\x62\xe0\xc7\x0e\xeb\x04\x0f\x0e\xea\xf3\x66\x9f\x36\xa9\xe0\x1c\xd5\x9f\xb2\xa9\x76\xcb\xb0\x88\xa3\xa1\x76\xdd\xf2\xff\x67\x9a\xaf\xca\x78\x56\xda\x45\x52\x34\x9a\x08\x3b\xc9\x8d\xc8\xa8\x59\xf9\xa6\xcd\xa8\x94\xd5\x9a\x30\x3e\x69\x56\x85\xae\x6a\x23\xd1\x74\xd0\xd2\x33\xf2\xdc\x8d\x57\xfe\xe5\xc4\x16\xb3\x72\xda\x8d\x96\x82\xad\x4e\xe0\xc6\x68\x86\xbc\x30\x78\x02\x54\x71\x38\x2f\xb8\x70\xe0\xcf\x4f\x61\x37\x34\x48\xb4\x76\x8d\x24\x45\x97\xc4\x33\xce\x2b\x3b\xd3\x8f\xc8\x7d\x23\x29\xa4\x0c\x61\xb0\x03\x38\xa8\x2a\x40\x21\x83\x99\xe2\x77\x9c\xfc\x5f\xcf\xdb\x52\x90\xea\x84\x11\xbd\x44\xe3\xe3\x6e\x6f\x06\x80\x75\x46\xab\xf9\x56\x37\x00\x05\xad\x98\x14\x6c\x11\x47\x6d\xa0\xfd\x31\x44\x96\x51\x2d\x6d\x74\x1c\xc1\xf5\xb0\xe4\x0e\xb6\xa2\xc6\x50\xcf\x58\x7b\x18\xf4\x56\x9e\xc7\xff\xbc\x4b\x7a\x47\x83\xdc\x6f\x90\x38\x14\x7e\x2d\xcd\xa3\xdf\x0c\x4b\xee\x62\xd7\xa4\x38\x14\x7a\x23\x2f\xe0\xef\x92\xde\xd1\xc0\x3a\xaa\x38\x35\xfc\x40\x0a\x24\x86\x66\xf8\xa0\xcd\x22\x28\xf0\xb1\xf9\xd6\x13\x33\xed\xaa\x80\x4b\xc1\x51\x31\xdc\x9a\xf3\x3c\x54\xbd\xcc\x03\x7d\xa8\xda\xf0\x0f\x5a\xc8\xf2\xf8\xbc\xa9\x79\x48\xea\x00\x50\xe3\x35\x47\x85\x54\x29\x46\x05\x3c\x93\x9a\x2d\xbe\x16\xda\xb5\x9a\xa4\xdf\xc1\x5d\x2a\x2c\x58\xe1\xd0\x27\x24\x56\x4b\xc1\xa9\x43\x0b\x54\xca\xe6\x0a\xb3\x3e\xf9\xa4\x0e\x39\x38\x0d\x2e\xdd\x1d\x1a\xd2\xfa\x74\x12\xa6\x65\x91\xa9\x70\xae\x97\x0c\x95\x43\x83\xbc\x1b\x77\xfc\xa8\x1f\xd4\x0a\x27\x2e\x15\x86\x77\x9c\xc3\xc5\x72\xc3\x55\x6d\xb0\xf1\x2b\xbe\x23\x29\xb5\x13\x9f\xb7\x4d\x6a\xc1\x70\x61\x84\x43\x23\xb4\xba\x33\x94\x2d\x44\x67\x57\x6b\xa8\xad\x35\xcf\xe2\xf9\x92\x40\xa8\x39\xdc\x52\x27\x6c\x22\x5a\x04\xda\x9b\x18\xb4\xea\xed\xeb\x7a\x4d\x7c\xd8\xb3\xa4\x5e\xd3\x48\xe9\x84\xd0\x6f\xd3\xeb\x4e\x3b\x2a\xc1\xe7\x74\x46\x4b\xfb\x67\x74\x0a\x12\x1a\x7d\xfe\xc3\xdb\xd5\x9c\x5b\x38\xf0\x7e\x9d\x87\xdc\x00\xee\x04\x5b\xa0\x7b\x89\x5f\x28\x38\x6a\xe6\xe8\xe2\x7f\xcd\x24\x55\x8b\xaa\xa6\x5a\xaf\xc9\x95\x50\x0b\x4b\x1a\x45\xaf\x73\x54\x4f\x4f\xd1\x56\xb0\x68\xfc\xda\x9b\x79\x20\x7b\xae\x25\x47\xeb\x2a\x7b\x5e\x64\xce\x80\x42\x41\xc6\x25\x5d\xd9\xa7\x27\xe0\x74\x65\x0f\xb4\xe7\xcf\x9a\xb4\xc5\x82\x2a\x1f\x38\xf0\x7e\x7b\x67\xc3\xdf\xf1\x6b\x81\xf6\x10\xdb\x1d\x74\xdc\xbb\xd5\x9d\x59\x07\x3d\xce\x07\xb6\xe3\x5c\xca\xfd\x66\x1c\x2c\x0c\x74\x06\xdd\x83\x2e\x07\xed\xb3\xee\x98\x42\x6e\xf4\xdc\x57\x76\xa4\x69\xb4\xd9\x2b\x2c\xa9\x2c\x30\xde\xd4\xf6\x42\x6a\xeb\xa3\x28\x64\xf4\x31\xde\x6d\xc8\x9b\x36\x47\xfa\xb6\xbb\xb1\x9b\xf0\x6e\x38\xb2\x4c\x1d\x76\x65\x5f\x7f\x78\xcb\xfc\x85\x0d\x54\x41\x7d\x4b\x83\x4e\xc2\xd5\xa9\xcd\x9c\x2a\xf1\x7b\x59\x6c\xf9\x44\xd9\x77\x32\x9d\xe5\x52\x50\x7f\xc1\xa3\x5a\x0a\xa3\x55\xa8\x1c\x2b\xa9\x8e\xce\x24\x92\xf2\x73\x3b\xdb\x75\xcd\xfb\x55\xf5\x7d\x33\x43\x76\x29\xf8\x2b\xba\xdf\x77\xee\x4b\xf9\x55\xd6\xef\xbe\xb9\xfc\xd8\x0a\xde\xa8\x15\x3c\x73\x0c\x55\x73\x04\xd2\x9a\x0d\x1b\x45\x41\x1f\x99\x7b\xb2\x6d\x95\x0e\xf5\x40\xa5\xc1\xd6\xd8\x16\xd5\x03\xb9\xd7\x6b\x72\x5d\xb8\xbc\x70\x1f\x85\x44\x15\x64\x6e\x9e\x81\x21\xa2\xf7\x57\x6c\x18\x83\xaa\xbe\x8f\xdf\xd4\x39\xed\xeb\xb2\x65\x30\x5b\xfe\x03\xe6\x9e\x21\x2a\xd0\x60\x86\x29\x5d\x0a\x6d\x3c\x57\x1a\xd7\x01\x66\xb9\xd4\x2b\xf4\x39\x99\xe2\xe1\xd5\xc8\x50\xe6\xb4\xb1\xff\xad\xfc\xa8\x0d\xfd\x5f\x61\x47\x53\x65\xbc\x32\x3f\x86\xab\x19\x1f\x4d\xd0\x17\x06\x33\x04\x9b\x23\x13\x89\x60\x60\x1d\xe6\x16\x5c\x4a\x1d\x50\x83\xe0\xe8\x02\x15\x08\x05\x06\x6d\xae\x95\x45\x9f\xa8\x2f\x70\x05\xe1\x75\xef\x55\x89\xf2\xe9\xb2\xdf\x73\xcb\x52\xe4\x85\x44\x18\xfb\x3d\x84\x44\x9b\x8c\xba\xe3\x17\xd0\xa6\xb1\xff\x5b\x88\xf3\xe9\xb2\xd7\xbd\x5e\x8b\x04\xc8\x85\xd1\x6a\x6b\x7e\x78\xcf\xf4\x8b\x06\x46\xd7\x6b\x94\x76\x00\xe2\x5a\x01\xc7\x8c\x2a\xde\x9f\xad\xf8\x6e\x0a\xb5\x55\xe3\xeb\x52\xa8\xa9\x47\xe1\x2e\xb0\xbf\xcf\xa4\x92\x3f\xab\x10\x6c\xda\xda\x35\xc4\x95\x76\x69\x5d\x22\x54\x27\x08\x39\xcc\x56\xfd\x5b\x2a\xdc\xd8\x34\x7b\x96\x58\xc3\x4f\x39\xfb\x59\xd6\x14\x73\xbf\xe0\xea\x25\x0c\x6c\xca\xab\xbf\xee\x1c\x81\xf7\xab\xfd\xfc\xab\xed\xde\x4f\x3e\x56\xcd\xfc\x05\x57\xfb\x02\x54\xb5\x31\xc3\x8c\x05\x68\x9f\xd1\xd6\x6b\x72\x89\x65\xfd\x2f\x06\xc8\xe8\x39\x3c\x54\x47\x96\xa0\xc1\xe9\x05\x63\x68\x2d\xfc\xb3\x17\x3f\x76\x11\xf9\xb3\xde\xc3\xe0\x01\x6b\x1a\x5f\x35\xaa\xbc\xef\x7b\x00\x80\x36\x14\xf8\xff\x26\x3a\xbf\x24\x1e\x6f\x09\xda\x7d\xa8\x42\x57\xa2\xb5\x43\x43\xca\x7f\x6d\x06\xdb\x7f\x26\xac\xcf\xd5\xb3\xc9\x68\xde\x7d\xd2\xb8\xee\xa4\x68\xd5\x1d\x7c\xa1\x55\x22\x38\x2a\x27\xa8\x84\x77\xa7\x67\x3f\x1c\x0d\xfc\x06\x23\x12\x18\x3f\x08\xc5\xf5\x03\x91\x9a\xd1\xf2\x51\x96\xda\x34\x8e\xa3\xce\xa3\x7b\xff\x11\x31\x74\xf7\x5e\x8c\x97\xd4\x80\x5f\x79\xa1\xb3\x5c\xab\xf0\x02\x13\xc3\x90\x68\x62\x73\x29\xdc\x78\xf4\xa6\x79\x3e\x0e\x3f\x74\x6c\x2c\xad\x7e\x40\xf8\xf9\xac\xfb\xae\xed\x11\x7c\x5d\x28\x54\x99\x89\xc6\x3d\xbc\x2f\x67\xed\x6f\x09\x5e\xe4\x97\xa8\xd6\x38\x3a\x89\xda\xfc\x3a\x3a\x89\xea\xe4\xc9\x37\x9b\x08\x1e\x9d\x44\xcd\xc3\x5b\xf4\x1b\x11\x8a\xe3\xe3\x75\x32\xee\x20\x1e\xc3\xcf\x31\x9c\x6e\x3e\xb5\x07\xd7\x74\xe7\x34\x63\xdd\x87\x6f\xff\xf9\xef\x00\x00\x00\xff\xff\x9a\x1d\x5e\x5f\xd2\x1d\x00\x00")
func complyBlankTemplatesIndexAceBytes() ([]byte, error) { func complyBlankTemplatesIndexAceBytes() ([]byte, error) {
return bindataRead( return bindataRead(
@ -320,7 +319,7 @@ func complyBlankTemplatesIndexAce() (*asset, error) {
return nil, err return nil, err
} }
info := bindataFileInfo{name: "comply-blank/templates/index.ace", size: 7610, mode: os.FileMode(420), modTime: time.Unix(1600197619, 0)} info := bindataFileInfo{name: "comply-blank/templates/index.ace", size: 7634, mode: os.FileMode(420), modTime: time.Unix(1600201870, 0)}
a := &asset{bytes: bytes, info: info} a := &asset{bytes: bytes, info: info}
return a, nil return a, nil
} }
@ -425,7 +424,7 @@ func complySoc2NarrativesReadmeMd() (*asset, error) {
return a, nil return a, nil
} }
var _complySoc2NarrativesControlMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x56\x4d\x6f\x1b\xc9\x11\xbd\xcf\xaf\x28\x40\xc0\x26\x01\x44\x26\xf6\xee\x02\x81\x6e\x0a\xa5\x04\x0e\xbc\x96\x60\x09\xde\x83\x91\x43\xb1\xa7\x86\xac\xa8\xa7\x6b\xb6\xab\x9b\xf2\x64\xe1\xff\x1e\x54\xf7\x70\x38\xb4\x2d\x38\x97\x9c\x38\xec\x9e\xa9\x8f\xf7\x5e\x7d\x04\xec\xe9\x0a\x36\x12\x52\x14\x0f\xb7\xe1\xc0\x51\x42\x4f\x21\xc1\x3b\x8c\x11\x13\x1f\xa8\x41\x17\x25\x8c\xfd\x15\x6c\x6e\xdf\x35\x8a\x89\xb5\x63\xd2\xab\x06\xe0\xf1\x61\x63\x3f\x00\x2b\xd8\x6c\x5e\xaf\x5f\x2d\x9e\x5f\x2f\x9e\x7f\x9c\x9f\x7f\x5a\xbc\xf3\xd3\xe2\x9d\x9f\x17\xe7\x3f\x9f\x9d\xff\xd8\xf4\xf8\x6f\x89\xef\xe9\xc0\xca\x12\x8a\xdb\x15\xb4\x98\xe8\x0a\xfe\x99\x03\xbc\x82\xd7\x7f\x79\xf5\xd7\xf2\x81\x93\xde\x22\xbf\x82\x37\x81\x13\xa3\x87\x56\x5c\xb6\x93\x66\xb5\x5a\x35\xcd\xc5\x77\xd2\x6c\x1e\xf7\x04\x9d\x78\x2f\xcf\x1c\x76\x30\x44\x39\x70\x4b\x0a\x08\x2d\xa9\x8b\x3c\x24\x96\x00\xd2\x41\xda\x13\xb8\xc9\x94\xa6\x98\x5d\xca\x91\xec\xe2\xf7\xdf\xd7\xef\xb0\xa7\xcf\x9f\xd7\xd5\x18\x87\x64\x2e\xca\x27\xac\x67\x66\x58\x21\x09\x50\xc8\x3d\x45\x4c\x54\x6c\x7a\xd9\xb1\x43\x7f\x09\x83\x78\x76\xe3\x25\x60\x68\x2d\x0c\x47\x6d\x8e\xe8\x8f\x3e\x15\xd2\x1e\x13\x28\xc5\x03\x99\x91\x5e\x02\x27\x89\x27\xef\x7f\x50\xc0\x61\xf0\xec\xb0\xb8\x32\x2b\x2d\x26\x04\x25\x97\x23\xa7\x71\x0d\x9b\x3d\x86\x1d\x29\xe4\xe0\xe4\x40\x91\x5a\xd8\x8e\x16\x82\xd2\xec\x8f\x14\x38\x7c\x3b\xac\x53\x48\x97\x20\x11\x5c\xd6\x24\x3d\x45\xa0\x05\xac\x18\x09\xb0\x6d\x23\xa9\x56\xeb\x91\x7a\x6a\xb9\x44\xa4\xa0\x03\x39\xee\xd8\x59\xf8\xe6\x22\x48\xa2\x16\x5c\x89\x6a\x6d\x4c\xbd\xad\x3e\x8f\x8c\x69\xd3\xcc\xd9\x01\xf5\x83\x97\x51\x41\xe9\x40\x06\xcb\x14\xdf\x02\x1e\xb1\x10\x13\xb9\x64\x67\x1d\xb7\x14\xaa\x1c\x0c\x04\x43\x83\x82\x1a\x63\x41\x62\x8f\x1e\x64\x30\x0a\x26\x6e\x39\x29\x38\x89\x05\x87\x36\xbb\xb4\x6e\x9a\x15\xfc\x82\xa1\xc5\x24\x71\xac\x26\x28\xb8\x38\x56\x1a\x31\x41\x24\x4d\xc5\x2a\x07\xe8\xc5\x4e\xed\x8b\xec\x13\xaf\x3a\x74\x46\x0c\xe6\xb4\xb7\x10\x26\x3e\x3a\x3b\x72\x8e\xb4\x44\xea\xbc\x64\xfb\xb6\x8b\x38\x6b\xa9\x59\xc1\xb5\x4b\x7c\xe0\x34\x16\xcb\x18\xa4\x47\x3f\x1e\x99\x36\x75\x4a\x38\x46\x68\x26\x75\xd4\x44\xbd\x36\x2b\xf8\x90\x7d\xa0\x88\x5b\xf6\xf6\x71\x8f\x01\x77\x54\x08\x19\xa2\xec\x22\xf6\x06\xee\x7d\xe1\xf1\x7f\xc2\xb6\x52\xfe\x7f\x82\x16\x1e\xab\xe2\xcc\x07\x17\xbd\x39\x9f\x5b\xba\x84\x6d\xae\x02\x0a\x92\xc0\x73\xcf\x26\x8e\x24\x57\x4d\xc1\xa5\x00\x77\xac\xe4\x9a\x4a\xb3\x82\xdb\x13\x27\xf3\xd9\x5d\xd7\xb1\x23\x78\x98\x64\x7f\xba\xb8\x47\xd5\x67\x89\xed\xe2\xa4\xe6\xf9\x18\x91\x83\xc1\x3b\x5f\x7c\xa0\xd0\x4a\x3c\xfd\xff\x55\xe2\x93\x26\x5c\x3a\x32\x44\x4f\x45\xfa\x2d\x54\xf7\xa8\x50\x2a\x5d\xb2\x82\xba\x3d\xb5\xd9\x53\xbb\x2c\xb5\x45\x19\x1b\x8a\x29\x87\xda\x12\xa8\xeb\xc8\x94\x40\xc1\xb2\x96\x0e\x24\xec\xc4\x02\x3c\xd6\xf2\x4c\x4d\xed\x16\x56\xe4\xd1\xb0\x94\x0e\xe8\x40\x21\xad\xda\x68\x5f\x7f\xe1\x2b\x92\x0e\x62\x7e\x64\x36\xb4\x8a\xe4\xd1\x80\x2e\x9f\xa9\x75\xb0\xbb\x9b\xbb\x2b\xf8\x3b\x07\xf4\xfc\x1f\x9a\xda\x83\x67\x4d\xda\x34\x17\x17\xf0\x30\xe7\x31\x03\x6c\x11\x5c\xe7\x96\xd3\x0c\x08\xa9\x91\x66\xcd\x9b\x9e\x8f\xdc\x7d\xfc\x2d\x63\x4c\x14\xfd\xf8\xaf\xd3\xdd\x6c\xe3\xad\xec\x14\x3e\x3e\x13\x3d\x9d\xdd\x6f\xc6\x2d\x45\x78\xcf\xfa\x04\xd7\xaa\xa4\x5a\x44\xfd\xc7\x53\x03\x1d\x44\x95\xb7\xde\x3a\x73\x3f\x44\xe9\x59\x09\xd4\x51\xc0\xc8\xa2\x7f\xfa\xb6\xd3\x1b\x53\xed\xc6\xa3\xaa\x35\xa3\x4a\xea\xf9\x8b\x7f\x43\xf7\x94\x07\x78\x24\x4d\x86\xfa\xf9\xe5\x0d\x2b\x6a\xb2\xb0\xa8\xb4\xd1\xf1\xf4\x9e\x52\xcf\x2b\x0c\x21\xa3\x5f\xfa\xa3\x03\x3b\x52\xf8\x61\x29\xa3\x17\x00\xf9\x01\x36\x9e\x30\xc2\x5b\x79\x5e\xdd\x47\x96\x02\xce\xb5\xa7\x98\xce\xe0\xb9\x1e\x06\x3f\xc2\xdd\x03\xdc\x63\x72\x7b\x52\xf8\xd8\x4b\x48\xfb\x7a\xf9\x81\x22\x77\x63\x4d\xf3\x86\x75\x10\xb5\x92\x2e\x01\xdb\x60\x3a\x69\xf8\x8b\x10\x36\x12\xac\x40\x4f\xa4\xcc\x75\xf1\xf1\xab\x9c\xe6\x77\x7e\x39\x35\xa7\xa2\x03\x0b\xd5\xfe\x6c\xac\x4f\xec\x72\xfc\x16\xbc\xf7\x14\x28\x4d\x37\x86\xdd\xd2\xfe\xaf\x7b\x4e\xb4\x95\x4f\x27\x0f\x93\xc7\xc5\x3b\x0f\x77\x9b\xd7\x93\xe2\xe6\x53\xd3\xe6\x6d\x91\xfe\x4d\x95\xfe\x77\xe5\x79\x17\xb6\x82\xb1\x85\xdb\xd2\xfc\x88\x6a\xeb\xf8\xea\xec\x4d\x38\x18\xbd\x3b\x53\xdb\x6c\xb3\xa4\xf9\xd2\xe5\x9b\xe0\x4a\x87\xb4\x16\xf1\x7e\x31\xff\x96\xbd\x21\xab\x95\xe4\x9e\x40\x72\x72\xd2\xd7\xd2\xb5\xff\xd8\x49\x2c\xad\x9b\x25\xd8\x70\x3c\xb6\xe0\xe5\x52\x50\xab\xb9\x76\xe1\x6e\x04\xdd\x4b\x34\x23\x1c\x76\xf3\xf4\xa6\x4f\x5c\x35\x79\xdc\x58\x16\x53\x7a\x0d\x77\xc1\xd1\xf1\x7b\xa6\xf6\x72\xaa\xf2\xa3\x21\xdb\x7e\x22\xcd\xb3\xbb\x4e\x72\xee\xcb\x6a\x14\x76\x5f\xd9\xfe\x32\xb8\xda\x93\x5c\x24\x2c\x6f\x05\x7a\x7e\x31\x0d\xeb\x90\x44\x2d\xb5\xeb\xba\xa8\xf5\x7d\x0e\x53\x49\x9e\xc1\xe5\xe6\x1b\x52\x88\xe4\xe9\x80\x21\xd9\xf8\xb4\x81\x53\x74\x14\x69\x87\xb1\x35\x7f\x96\x7e\x97\x43\x19\x91\x65\x66\x4e\xc0\x6e\xe5\x40\xa7\x40\x9e\x39\xed\xcb\xa6\x16\x03\xfa\x3a\xc3\x3e\x4d\x7f\x06\x8c\xa9\x34\x53\x5b\xa2\x00\x75\x55\x43\x84\x2d\x2a\xd7\x0c\xd0\x39\x99\x9c\x09\x58\x41\xe7\xb2\x26\x44\xfa\x2d\x73\x65\xcf\x3a\xe9\xc5\x05\xbc\x99\x1c\xbc\x98\xcb\x91\x9e\xa3\x0c\x2e\xa7\xa9\xcf\x47\x18\xcf\x16\xa8\x63\xbc\x7e\x84\xac\x73\xae\xf3\xee\x6a\x9b\x54\x20\xaf\x65\x64\x3e\x78\x74\x4f\x36\x22\x7b\x64\xdf\xac\xe0\x1f\x9c\xf6\x79\x0b\x89\xdd\x13\x19\x2f\xb5\x62\x3e\x7d\x27\xbe\x19\xeb\x29\xd0\x79\x5e\x2c\xb1\xb7\x95\xf6\x4b\xf0\xea\x54\x2f\x33\x6b\x8f\x91\xf6\xe2\x5b\x8a\x7a\x39\xaf\x8d\xf6\x68\x26\xcb\xae\xa4\x97\xc6\x5f\xf6\x58\x9f\x2d\xef\x9d\xb5\xd6\xba\x54\x9a\x4c\x8b\xcd\x59\x2d\xe7\x04\x1c\xed\xe4\x89\xc8\xd9\xd4\xf8\xe7\x13\x37\xb2\xf5\x56\xa6\x2c\x61\xfd\xdf\x00\x00\x00\xff\xff\xd5\x1b\xb6\x85\xfd\x0c\x00\x00") var _complySoc2NarrativesControlMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x56\x4d\x6f\x1b\xc9\x11\xbd\xcf\xaf\x28\x40\xc0\x26\x01\x44\x26\xf6\xee\x02\x81\x6e\x0a\xa5\x04\x0e\xbc\x96\x60\x09\xde\x83\x91\x43\xb1\xa7\x86\xac\xa8\xa7\x6b\xb6\xab\x9b\xf2\x64\xe1\xff\x1e\x54\xf7\x70\x38\xb4\x2d\x38\x97\x9c\x38\xec\x8f\xfa\x78\xef\x55\x55\x07\xec\xe9\x0a\x36\x91\x13\x45\x96\x70\x1b\x0e\x1c\x25\xf4\x14\x12\xbc\xc3\x18\x31\xf1\x81\x1a\x74\x51\xc2\xd8\x5f\xc1\xe6\xf6\x5d\xa3\x98\x58\x3b\x26\xbd\x6a\x00\x1e\x1f\x36\xf6\x03\xb0\x82\xcd\xe6\xf5\xfa\xd5\xe2\xfb\xf5\xe2\xfb\xc7\xf9\xfb\xa7\xc5\x99\x9f\x16\x67\x7e\x5e\xac\xff\x7c\xb6\xfe\x63\xd3\xe3\xbf\x25\xbe\xa7\x03\x2b\x4b\x28\x6e\x57\xd0\x62\xa2\x2b\xf8\x67\x0e\xf0\x0a\x5e\xff\xe5\xd5\x5f\xcb\x05\x27\xbd\x45\x7e\x05\x6f\x02\x27\x46\x0f\xad\xb8\x6c\x2b\xcd\x6a\xb5\x6a\x9a\x8b\xef\xe5\xd9\x3c\xee\x09\x3a\xf1\x5e\x9e\x39\xec\x60\x88\x72\xe0\x96\x14\x10\x5a\x52\x17\x79\x48\x2c\x01\xa4\x83\xb4\x27\x70\x12\x52\x14\x0f\x9a\x62\x76\x29\x47\xb2\x8d\xdf\x7f\x5f\xbf\xc3\x9e\x3e\x7f\x5e\x57\x63\x1c\x92\xb9\x28\x57\x58\xcf\xcc\xb0\x42\x12\xa0\x90\x7b\x8a\x98\xa8\xd8\xf4\xb2\x63\x87\xfe\x12\x06\xf1\xec\xc6\x4b\xc0\xd0\x5a\x18\x8e\xda\x1c\xd1\x1f\x7d\x2a\xa4\x3d\x26\x50\x8a\x07\x32\x23\xbd\x04\x4e\x12\x4f\xde\xff\xa0\x80\xc3\xe0\xd9\x61\x71\x65\x56\x5a\x4c\x08\x4a\x2e\x47\x4e\xe3\x1a\x36\x7b\x0c\x3b\x52\xc8\xc1\xc9\x81\x22\xb5\xb0\x1d\x2d\x04\xa5\xd9\x1f\x29\x70\xf8\x76\x58\xa7\x90\x2e\x41\x22\xb8\xac\x49\x7a\x8a\x40\x0b\x58\x31\x12\x60\xdb\x46\x52\xad\xd6\x23\xf5\xd4\x72\x89\x48\x41\x07\x72\xdc\xb1\xb3\xf0\xcd\x45\x90\x44\x2d\xb8\x12\xd5\xda\xa8\x7a\x5b\x7d\xc2\x66\x4a\xb9\x69\xe6\xec\x80\xfa\xc1\xcb\xa8\xa0\x74\x20\x83\x65\x8a\x6f\x01\x8f\x58\x88\x89\x5c\xb2\xb5\x8e\x5b\x0a\x55\x0f\x06\x82\xa1\x41\x41\x8d\xb1\x20\xb1\x47\x0f\x32\x18\x05\x13\xb7\x9c\x14\x9c\xc4\x82\x43\x9b\x5d\x5a\x37\xcd\x0a\x7e\xc1\xd0\x62\x92\x38\x56\x13\x14\x5c\x1c\x2b\x8d\x98\x20\x92\xa6\x62\x95\x03\xf4\x62\xab\x76\x23\xfb\xc4\xab\x0e\x9d\x11\x83\x39\xed\x2d\x84\x89\x8f\xce\x96\x9c\x23\x2d\x91\x3a\x2f\xd9\xee\x76\x11\x67\x2d\x35\x2b\xb8\x76\x89\x0f\x9c\xc6\x62\x19\x83\xf4\xe8\xc7\x23\xd3\xa6\x4e\x09\xc7\x08\xcd\xa4\x8e\x9a\xa8\xd7\x66\x05\x1f\xb2\x0f\x14\x71\xcb\xde\x2e\xf7\x18\x70\x47\x85\x90\x21\xca\x2e\x62\x6f\xe0\xde\x17\x1e\xff\x27\x6c\x2b\xe5\xff\x27\x68\xe1\xb1\x2a\xce\x7c\x70\xd1\x9b\xf3\xb9\xa5\x4b\xd8\xe6\x2a\xa0\x20\x09\x3c\xf7\x6c\xe2\x48\x72\xd5\x14\x5c\x0a\x70\x73\x29\xd7\x5c\x9a\x15\xdc\x9e\x48\x99\xd7\xee\xba\x8e\x1d\xc1\xc3\xa4\xfb\xd3\xc6\x3d\xaa\x3e\x4b\x6c\x17\x2b\x35\xd1\xc7\x88\x1c\x0c\xdf\x79\xe3\x03\x85\x56\xe2\xe9\xff\xaf\x12\x9f\x34\xe1\xd2\x91\x41\x7a\xaa\xd2\x6f\xc1\xba\x47\x85\x52\xea\x92\x15\xd4\xed\xa9\xcd\x9e\xda\x65\xad\x2d\xea\xd8\x60\x4c\x39\xd4\x9e\x40\x5d\x47\x26\x05\x0a\x96\xb6\x74\x20\x61\x27\x16\xe0\xb1\x98\x67\x6e\x6a\xbb\xb0\x2a\x8f\x06\xa6\x74\x40\x07\x0a\x69\xd5\x46\xbb\xfd\x85\xaf\x48\x3a\x88\xf9\x91\xd9\xd0\x2a\x92\x47\x43\xba\x5c\x53\x6b\x61\x77\x37\x77\x57\xf0\x77\x0e\xe8\xf9\x3f\x34\xf5\x07\xcf\x9a\xb4\x69\x2e\x2e\xe0\x61\xce\x63\x06\xd8\x22\xb8\xce\x2d\xa7\x19\x10\x52\x63\xcd\xda\x37\x3d\x1f\xc9\xfb\xf8\x5b\xc6\x98\x28\xfa\xf1\x5f\xa7\xbd\xd9\xc6\x5b\xd9\x29\x7c\x7c\x26\x7a\x3a\xdb\xdf\x8c\x5b\x8a\xf0\x9e\xf5\x09\xae\x55\x49\xb5\xa8\xfa\x8f\xa7\x0e\x3a\x88\x2a\x6f\xbd\xb5\xe6\x7e\x88\xd2\xb3\x12\xa8\xa3\x80\x91\x45\xff\xf4\x6d\xa7\x37\x26\xdb\x8d\x47\x55\xeb\x46\x95\xd4\xf3\x83\x7f\x43\xf7\x94\x07\x78\x24\x4d\x86\xfa\xf9\xe6\x0d\x2b\x6a\xb2\xb0\xa8\xf4\xd1\xf1\x74\x4e\xa9\xe7\x15\x86\x90\xd1\x2f\xfd\xd1\x81\x1d\x29\xfc\xb0\x94\xd1\x0b\x80\xfc\x00\x1b\x4f\x18\xe1\xad\x3c\xaf\xee\x23\x4b\x01\xe7\xda\x53\x4c\x67\xf0\x5c\x0f\x83\x1f\xe1\xee\x01\xee\x31\xb9\x3d\x29\x7c\xec\x25\xa4\x7d\xdd\xfc\x40\x91\xbb\xb1\xa6\x79\xc3\x3a\x88\x5a\x4d\x97\x80\x6d\x32\x9d\x34\xfc\x45\x08\x1b\x09\x56\xa1\x27\x52\xe6\xba\xf8\xf8\x55\x4e\xf3\x99\x5f\x4e\xdd\xa9\xe8\xc0\x42\xb5\x3f\x1b\x6b\x14\xbb\x1c\xbf\x05\xef\x3d\x05\x4a\xd3\x8e\x61\xb7\xb4\xff\xeb\x9e\x13\x6d\xe5\xd3\xc9\xc3\xe4\x71\x71\xe6\xe1\x6e\xf3\x7a\x52\xdc\xbc\x6a\xda\xbc\x2d\xd2\xbf\xa9\xd2\xff\xae\x3c\xef\xc2\x56\x30\xb6\x70\x5b\xba\x1f\x51\x6d\x1d\x5f\xad\xbd\x09\x07\xa3\x77\x67\x6a\x9b\x6d\x96\x34\x5f\xda\x7c\x13\x5c\x69\x91\xd6\x22\xde\x2f\x06\xe0\xb2\x37\x64\xb5\x92\xdc\x13\x48\x4e\x4e\xfa\x5a\xba\xf6\x1f\x3b\x89\xa5\x77\xb3\x04\x9b\x8e\xc7\x1e\xbc\x7c\x15\xd4\x6a\xae\x6d\xb8\x1b\x41\xf7\x12\xcd\x08\x87\xdd\x3c\xbe\xe9\x13\x57\x4d\x1e\x9f\x2c\x8b\x31\xbd\x86\xbb\xe0\xe8\x78\x9f\xa9\xbd\x9c\xaa\xfc\x68\xc8\x9e\x3f\x91\xe6\xe1\x5d\x47\x39\xf7\xe5\x6d\x14\x76\x5f\xd9\xfe\x32\xb8\xda\x93\x5c\x24\x2c\xa7\x02\x3d\xbf\x98\x86\x75\x48\xa2\x96\xda\x32\xff\x37\xd2\xf7\x39\x4c\x25\x79\x06\x97\x9b\x77\x48\x21\x92\xa7\x03\x86\x64\xf3\xd3\x26\x4e\xd1\x51\xa4\x1d\xc6\xd6\xfc\x59\xfa\x5d\x0e\x65\x46\x96\xa1\x39\x01\xbb\x95\x03\x9d\x02\x79\xe6\xb4\x2f\x4f\xb5\x18\xd0\xd7\x21\xf6\x69\xfa\x33\x60\x4c\xa5\x99\xda\x2b\x0a\x50\x57\x35\x44\xd8\xa2\x72\xcd\x00\x9d\x93\xc9\x99\x80\x15\x74\x2e\xef\x84\x48\xbf\x65\xae\xec\x59\x27\xbd\xb8\x80\x37\x93\x83\x17\x73\x39\xd2\x73\x94\xc1\xe5\x34\xf6\xf9\x08\xe3\xd9\x0b\xea\x18\xaf\x1f\x21\xeb\x9c\xeb\xfc\x78\xb5\xa7\x54\x20\xaf\x65\x66\x3e\x78\x74\x4f\x36\x22\x7b\x64\xdf\xac\xe0\x1f\x9c\xf6\x79\x0b\x89\xdd\x13\x19\x2f\xb5\x62\x3e\x7d\x27\xbe\x19\xeb\x29\xd0\x79\x5e\x2c\xb1\xb7\x37\xed\x97\xe0\xd5\xb1\x5e\x66\xd6\x1e\x23\xed\xc5\xb7\x14\xf5\x72\x7e\x37\xda\xa7\x99\x2c\x8f\x25\xbd\x34\xfe\xb2\xc7\xfa\x6d\x79\xef\xac\xb5\xd6\x57\xa5\xc9\xb4\xd8\x9c\xd5\x72\x4e\xc0\xd1\x4e\x9e\x88\x9c\x4d\x8d\x7f\x3e\x71\x23\x5b\x6f\x65\xca\x12\xd6\xff\x0d\x00\x00\xff\xff\x67\xf1\xae\xcc\x00\x0d\x00\x00")
func complySoc2NarrativesControlMdBytes() ([]byte, error) { func complySoc2NarrativesControlMdBytes() ([]byte, error) {
return bindataRead( return bindataRead(
@ -440,7 +439,7 @@ func complySoc2NarrativesControlMd() (*asset, error) {
return nil, err return nil, err
} }
info := bindataFileInfo{name: "comply-soc2/narratives/control.md", size: 3325, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)} info := bindataFileInfo{name: "comply-soc2/narratives/control.md", size: 3328, mode: os.FileMode(420), modTime: time.Unix(1600199666, 0)}
a := &asset{bytes: bytes, info: info} a := &asset{bytes: bytes, info: info}
return a, nil return a, nil
} }
@ -1185,42 +1184,22 @@ func complySoc2ProceduresWorkstationMd() (*asset, error) {
return a, nil return a, nil
} }
var _complySoc2StandardsReadmeMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8f\x41\x6e\xeb\x30\x0c\x44\xf7\x3e\xc5\x00\x7f\xfb\x1b\xed\xbb\xcb\xa6\xe7\x08\x23\xd1\x16\x13\x49\x34\x48\xba\x86\x6f\x5f\xb8\x41\x8b\xee\x1e\xc0\x47\xcc\xcc\x3f\x7c\x18\x75\xde\xd5\x9e\x3e\x4d\xd7\xd6\x70\x3b\xa8\xb7\x1b\x66\x69\xec\x90\x81\xa8\xe2\x28\x62\x9c\x43\xed\x00\x19\x83\xdc\xb7\xce\x05\xa1\xc8\x3a\x66\xb5\x7e\x62\x8d\x58\xfd\x3d\xa5\x45\xa2\x6e\xf7\x4b\xd6\x9e\x74\xe5\x91\x75\x84\x69\x4b\x9e\x2b\x77\xf2\x14\xc6\x9c\x3a\x79\xb0\xa5\xe7\x4e\x4d\xe6\x23\x79\xd0\x28\x64\x65\x9a\xae\xe5\xb1\x79\x20\x2a\x23\xc8\x16\x0e\xfc\xdc\x30\xab\xbd\xca\xac\xa6\x0f\xce\x81\xfb\x01\x2a\x45\xc6\x02\x35\x18\x77\xfd\x3c\xb9\xc9\xe0\x37\x09\xee\x8e\x5d\xa2\xca\x00\x53\xae\xdf\x7b\xfe\x9f\xe2\xeb\x25\xfd\xfa\xf4\x27\x41\x1a\x83\x47\x88\x71\x3b\x2e\xd3\x57\x00\x00\x00\xff\xff\x04\x1d\x23\xdb\x1c\x01\x00\x00") var _complySoc2StandardsGitkeep = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x01\x00\x00\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00")
func complySoc2StandardsReadmeMdBytes() ([]byte, error) { func complySoc2StandardsGitkeepBytes() ([]byte, error) {
return bindataRead( return bindataRead(
_complySoc2StandardsReadmeMd, _complySoc2StandardsGitkeep,
"comply-soc2/standards/README.md", "comply-soc2/standards/.gitkeep",
) )
} }
func complySoc2StandardsReadmeMd() (*asset, error) { func complySoc2StandardsGitkeep() (*asset, error) {
bytes, err := complySoc2StandardsReadmeMdBytes() bytes, err := complySoc2StandardsGitkeepBytes()
if err != nil { if err != nil {
return nil, err return nil, err
} }
info := bindataFileInfo{name: "comply-soc2/standards/README.md", size: 284, mode: os.FileMode(420), modTime: time.Unix(1600197675, 0)} info := bindataFileInfo{name: "comply-soc2/standards/.gitkeep", size: 0, mode: os.FileMode(420), modTime: time.Unix(1600199484, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _complySoc2StandardsTsc2017Yml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x5b\xcd\x72\xdc\x38\x92\xbe\xeb\x29\x70\xb4\x23\x68\x6f\xb4\x24\xdb\x3d\xbd\x27\x75\xb5\x3b\x56\x11\xeb\x9d\x0a\x5b\x33\x77\x08\xc8\xaa\xc2\x1a\x04\xd8\xf8\x29\xb9\xe6\x34\xaf\x31\xaf\x37\x4f\x32\x91\x09\x80\x04\x59\x64\xa9\x4a\xf6\xcc\xc9\x92\x4c\x02\x99\x5f\xfe\xff\xd0\xf0\x16\x7e\x61\x0f\x5f\x56\x57\xab\xd5\x4f\x6f\x7f\xfa\xe5\x8a\xb1\x0d\x6f\x95\x3e\xfc\xc2\x56\xab\x9f\xae\x18\x4b\x0f\xdc\x9b\x00\x5b\xa7\xc2\x81\x71\x23\xd9\xc7\xb0\x53\xc2\x5f\x31\x26\xc1\x0b\xa7\xba\xa0\xac\xf9\x85\x3d\xec\x80\x81\x09\xf8\x90\x84\xd6\x1a\x1f\x1c\x0f\xe0\x19\x67\xc2\xb6\xad\x0a\x2d\x98\xc0\x82\x65\x6a\x74\x16\xe0\x59\x5c\xb3\x3d\xd7\x11\x3c\x51\x71\xbd\x44\xc5\xaf\x96\x3b\xc9\xee\x8d\x84\x0e\x8c\x04\x23\x60\x8e\x86\x47\x7a\xca\x6e\x98\x54\x0e\x44\xb0\xce\x8f\xe9\x51\xd5\xfb\x6c\xe3\x6c\xcb\x5a\x6e\xf8\x16\x88\x3e\x22\xe9\x1b\x38\xa1\x3c\x78\x66\xf7\xe0\xbc\xda\xee\x02\x1e\x17\x76\xc0\x24\xec\x41\xdb\xae\x7f\xb4\x03\xb7\xb1\xae\xe5\x78\x94\xdd\x10\x6b\xce\x70\xcd\x84\x35\xc1\x59\x4d\xec\xdc\x2c\xb1\xf3\x67\xb7\xe5\x46\xfd\x8d\x23\xe9\x5c\xb3\x2f\xc1\x45\x11\xa2\x3b\x62\xea\xd3\x40\x1e\xf8\xc0\x1f\xb5\xf2\x3b\xf0\x0d\x7b\x52\x61\x57\xb8\x2d\x84\x36\xcc\x97\x63\x7c\xc3\x1c\x74\xd6\x05\x65\xb6\x4c\x2b\x83\x7f\x40\x9a\x79\xd7\x39\xdb\x39\xc5\x03\x30\x1e\xc3\xce\x3a\x15\x14\xca\xc9\x48\xe6\xc0\x77\xd6\x78\xf5\xa8\x74\xfa\xa3\x32\xc4\x77\x17\x9d\x8f\x8a\x60\xb0\x8f\xff\x0f\x22\xa8\x7d\x16\xd6\xed\x12\x77\xff\xa3\x9c\x32\xdb\x86\x3d\x38\xae\x0c\x92\x80\xe7\x7f\x86\x80\x2a\x62\xcd\x4b\x95\x87\x87\xe0\xb8\x08\x4d\x91\x44\x93\xc9\x0e\x5c\x19\x7c\xb4\xa3\x0b\x50\xc6\x6a\xaf\x64\xe4\x9a\x58\xe0\x5a\x6d\x0d\x1d\x41\x98\x4d\x58\x78\xb7\xac\xf5\xe5\x14\x76\x27\x84\x8d\x26\x70\x02\xe6\x70\x82\xfa\x9d\xd5\xd2\x8f\xee\xe7\xe5\x55\x0d\x6c\x63\x1d\xe2\xa9\xdc\x91\xaa\x5c\x06\xfd\xdb\xab\xd5\xea\x7a\x6a\xae\xd7\x3d\xe1\x7f\xf1\xa4\x8e\xf7\x86\x94\x13\x69\x64\x5f\x0e\x3e\x40\x7b\xca\x68\xed\x23\x82\xe8\x99\x75\x6c\x0b\x06\x32\xfe\x46\xb2\x88\xa6\xe0\x40\xc3\x9e\x9b\xd0\xb0\x3f\x22\x47\x0c\x98\xaa\x4e\x0f\x96\xf9\xd8\xa1\xb2\x11\xcd\x9b\x68\x04\xfe\x1d\xc5\x3e\x6f\x16\xd7\x53\x2b\x3f\x22\x7e\x65\xdb\x36\x1a\x25\x46\xe4\x37\xe4\x89\xf0\xac\x13\x8c\x94\xeb\xf4\x81\x94\x27\x1d\x42\x80\xf6\x04\x37\x4c\x19\xa1\xa3\x24\x02\x7b\x54\xe7\x4d\x00\x65\x36\xe5\xa0\x61\x06\x04\x78\xcf\xdd\xe1\x25\xbc\xdf\xbc\x8c\xf7\x8f\xdf\x9e\xe5\x7d\xc4\x30\x29\x3b\xe4\x97\x58\xc7\x1d\xf1\xe3\x60\xcb\x1d\x71\xde\xf2\x10\xc0\x79\xc6\x37\x1b\x44\xc0\x6c\xcf\x64\xe0\x66\xaa\x79\x37\x83\x4f\x1b\x4c\x6b\x99\x48\xdf\x81\x50\x1b\xa4\xa5\xc2\x9e\x88\xf5\x71\xb3\x51\x42\xa1\xa5\x0a\xcd\x29\x48\x04\xcb\xc0\x90\xf1\x20\x71\x4a\xe2\x19\x9b\x02\x0d\xf9\x33\xef\xc1\x7b\xb2\x6e\xbb\x61\x4e\xf9\xaf\xa4\xad\x3c\x31\x64\xc7\xd6\x7e\x33\xd5\xbb\x81\xf4\xcf\xca\x7f\xc5\xe7\xcf\x62\xa1\xd0\x81\x78\xd2\x8d\xc1\x12\x7d\x5c\xec\x14\xec\xa1\x50\xa3\xc2\x88\x47\x2e\x9c\xf5\x9e\x1e\xcc\xe7\x10\x03\x86\xeb\xc3\xdf\xfa\x93\x38\x7a\xbd\x47\xee\x55\x52\x3d\x09\x01\x5c\x9b\x5c\xe8\xce\x3e\xd1\xcb\xe9\x41\xbf\xb3\x51\x4b\xf6\x08\x39\x80\x49\xe2\xef\x66\x89\xbf\xdf\x1d\x8f\xf2\x32\x2e\x05\x1a\x82\x44\x15\x21\x4f\x64\xc9\x79\x73\x4d\x74\x6d\xe8\x38\x74\xae\x84\x3f\x92\x77\x0a\x89\x89\x14\x6e\x97\xa8\xbc\x6f\x3b\x2e\xe8\x8d\xd5\x8e\x9b\xed\xb9\x42\x18\x14\x01\x3c\x13\xe9\x4d\x16\x76\x3c\x30\x41\x20\x79\xb5\x35\xa4\x36\x26\xe8\x03\x53\xe9\x12\x24\xd3\x93\x71\x2d\x28\xfa\xed\x54\xd1\x6f\x7b\x3a\x3f\x59\xa3\x82\xc5\x10\x77\x4a\xd1\x41\x83\x08\xbe\x8f\x56\x39\x02\xe7\xac\xc1\x33\x6b\xb6\x36\x87\xc6\xff\xb2\x8e\x79\xe8\x38\xba\x5d\x06\x98\x0d\x91\x86\x13\x9c\xdc\x0b\x70\x14\xe1\x9e\x76\x10\x76\x40\x31\x84\xa2\x9d\x35\x60\x50\xc5\x8e\xa9\x67\xdc\x01\xeb\x1c\xf8\x92\xaa\x54\x66\x4d\x9c\x5d\x2f\x71\xf6\x19\x5a\x90\x8a\x3f\x13\xa5\x33\x89\x19\xfa\x89\x9f\x9d\x90\x22\x21\x19\xb5\xc8\x61\x8d\xb3\xa0\x5a\xd0\x07\xd4\x5b\x83\xdc\xa0\xc6\x58\x0f\x95\x8b\xca\x3e\xb8\x84\x4c\xfe\x15\x61\x12\xd6\xb9\xa4\x44\x8c\x8b\xa9\x1b\xf7\x60\x94\x75\xd3\x5c\x2e\xcc\x26\x84\x0d\x19\xd9\x90\x07\x5d\xad\x56\xef\xa6\xa2\x7e\x77\xec\xd3\x92\xf1\x7c\x52\x41\x6d\x9f\x83\x27\x4b\x9e\x68\x28\xc2\x1f\x44\x83\xa7\xa5\xe0\x92\x55\xd4\x04\xa7\x1e\x63\x80\x62\x3c\x6d\x7f\xc7\xe0\xd3\x9e\xb3\x2b\xd2\x14\x21\xa0\x4b\xa9\x86\xc6\x5b\x3d\x71\x76\xbd\xc4\xd9\x03\x88\x9d\xb1\xda\x6e\x0f\x6c\x95\x68\x3b\x65\x6e\x5c\x7b\x3b\xcf\x58\xca\x17\xf4\x1c\x83\x98\x99\xb2\x30\xdc\x33\x89\x96\xa7\xbc\xc4\xbb\xa9\x2f\x1b\x08\xff\xd8\xe7\xc1\x92\xad\xad\x46\xed\x3a\x5d\x8f\x74\xda\x1e\x16\x04\xe0\x6c\xdc\xee\x58\x97\x4f\x49\x12\xe9\xf3\x6c\xf6\x84\xbf\x2a\xcf\xe0\x5b\x07\x22\x80\x24\xc6\x95\x61\x9d\xb3\x02\x24\xa6\xd9\xe9\x8d\x2e\x86\xe1\x0c\x65\x48\x16\xa4\x23\xab\xd5\xfb\xa9\x6a\xbd\xef\xf9\xf8\x5f\xbb\xa5\xea\xe7\x4e\x60\x36\x71\xca\xd5\xb5\x9d\x26\x94\x3c\xd3\xf9\x1d\x4e\xef\x30\x0f\x22\x52\xa0\xf4\x76\x13\x9e\xb8\x03\x34\x8a\x8d\xe3\x7d\x1d\x90\xb3\x7e\x27\x76\x2a\x40\xaa\x0c\x92\x54\x3a\x67\x43\xe2\xa9\x4e\xe5\xd0\x8b\x06\x52\xa6\xfc\xff\x28\xa7\x36\x15\x4a\xfd\x5d\xb0\x27\x52\x82\x65\x2d\x40\xa8\x02\xda\x3f\xff\xfe\x0f\x3f\x96\xe2\xfb\xa9\xfa\xbd\xaf\xb3\x1d\xb7\xc0\xfa\xda\xa1\x31\x63\xb5\xe8\x7d\x24\xf3\x4e\x7e\x5a\x38\x90\x29\x08\x25\x15\xdc\x3a\x6e\x42\xf5\xff\x09\x94\xa6\x0e\xb1\x0e\xb6\xca\xa7\x3c\x07\x71\x48\x15\x0f\x86\x5b\x03\x4f\x83\xaf\x4a\x85\x5f\xfe\x25\x7a\x7c\xfc\x89\x7c\x52\x86\x59\x79\xc6\x25\x86\x61\x3c\x0a\x24\x7b\x3c\x54\x77\xbc\x65\xbf\x53\x62\x8f\xcf\x5f\xfa\x6e\x43\x6f\xcc\xf2\xe7\x80\x39\x68\xed\x1e\x24\x3a\x7e\x93\x1e\x1c\xce\x34\x96\x69\x6b\xb6\xf8\xb7\xc2\x94\x24\xc0\x6f\x96\x00\xff\x6c\x35\xbc\xf9\x95\x7b\x90\xcf\x6b\xdc\x00\x54\xc3\x5a\x2b\x29\xcc\x36\x58\x1c\x24\x92\x7c\x21\x24\x58\x26\x79\xe0\x4d\xa5\x7f\x25\xd4\xe4\x70\x67\x29\x64\x9d\xd4\xb6\x47\xa2\xc9\x1a\xe6\xac\x4e\x85\xeb\x38\x09\xa7\x8b\xab\x70\x2d\x01\x03\x7a\x0a\x3d\x29\xd8\x37\x6c\xab\xf6\x29\x48\xa4\x9c\xa5\x2f\x4c\x52\xac\x34\xe8\x18\x29\x52\x6a\xe0\x3e\xb0\xce\xa9\xbd\xd2\xb0\x05\x3a\xc4\xc3\x16\xd3\xe2\xe2\x70\x65\x4c\x97\x9e\xa7\xdf\xb7\x4b\x70\xaf\x77\x07\x7f\x9e\x79\x3b\xf0\xc1\x29\xf4\xab\x5d\x79\x67\x80\x77\xc3\x45\xa9\x45\x28\x7b\x38\x05\xe4\x2b\x0c\x97\xf0\x8d\xa3\xbb\x68\x48\x30\x4c\x00\xea\x78\x75\x4a\xc3\x1e\xb9\xf8\xfa\x26\x76\x8c\x02\x3d\xf3\xc1\x3a\xbe\x85\x5a\x58\x1e\x8c\x57\x14\xf2\xb4\x4d\xa9\xb6\x7f\x4d\xf1\xa5\x57\x34\x4c\x62\xbc\x35\x06\xf4\x99\x28\xbd\x5b\x42\xe9\x37\x24\xf2\x37\xe5\x3b\xeb\x4f\x96\x36\x52\x79\xf4\xdf\xca\x44\xa8\x9c\x20\x02\x52\x20\xcb\xc8\x50\xda\x94\x3c\x5c\x0f\x66\x42\xc7\x1a\x7d\x60\x7c\x13\x72\x06\x95\xab\x79\x64\xc0\x01\x97\x49\xb9\x05\xbd\x49\xc8\x91\x66\x64\xad\x4e\x0e\x30\x99\x78\x3e\x6d\xc7\x3d\x7b\x04\x30\x4c\x2a\x32\xee\x5d\x89\x0e\xb5\x69\x3a\xf8\x23\x2a\x34\xfa\xf3\x50\x7a\xbf\x84\x52\xa9\xfd\xd8\xc3\xce\x01\x0f\xdf\x19\x2b\x5a\xe0\x3e\xc5\xae\xc1\xcd\xf3\x2d\x96\xff\x48\x20\x5d\x90\x3d\xbe\x8d\x4e\x60\xc0\x88\x01\xad\x8a\x0a\x9a\x6c\x83\x8f\x36\x1a\xc9\x9d\xca\x94\x7f\x38\x29\xdf\x55\xf4\xc1\xca\x54\xef\x3c\x38\x6e\x7c\xab\xbc\x3f\x9d\x42\x0d\x36\x81\x90\x85\xea\x25\x74\x48\x29\x67\x28\xed\x9f\xd6\xee\xb9\x4e\x69\xf0\xa8\x29\x51\xe9\xeb\x29\x4f\x9f\xcd\x4a\x50\xf9\xd0\xd4\x56\xe6\x99\x0a\x4c\x46\x47\xb5\xe4\x02\x09\xc5\x27\xf2\x73\x4d\xe1\xe7\x25\xa8\x3e\x71\x4d\xba\xf6\x1b\x64\x3d\x3e\x4f\xca\x39\xad\xc9\xd2\xa4\xd8\xcc\x72\xe5\x28\x52\x1a\x8c\xd5\x4e\xec\x6c\xea\x28\x29\x7c\x5a\x46\x51\xbc\x5d\x34\x15\x4c\x94\x42\x63\x1a\x63\xa3\x1f\x94\xff\x1c\xbe\x3e\x4c\xd3\x9c\x0f\x3d\x5f\x7f\x8d\x1a\x13\xc4\x6c\x6e\xcb\xdc\xe5\x5b\xc6\x55\xf3\x28\x98\x53\x2f\x4a\x96\x03\x88\xb7\xb6\xaf\xc4\x46\x49\x99\x2d\xe5\xe1\x81\xbd\xfa\xe9\xf5\x50\x13\x5a\x84\x6b\xa3\xb6\xd1\x95\x02\x0b\xd3\x37\x07\x3e\xea\x50\x7a\x6e\x53\x84\x30\x53\xd8\x57\x3c\xa8\xa2\x25\xaf\xae\x5f\x33\x1f\x3d\xc6\x96\xa1\x61\x14\x2c\xbe\xa0\xb3\xc7\xda\x53\xc8\x9f\xbc\x4d\x70\x5d\x2f\xc1\x75\x67\x6c\xcb\xf5\x29\xa0\x06\x40\x32\xf7\xbd\x55\x56\x55\x61\xa9\x7f\x6c\x57\xa2\x21\x75\xb1\xd1\x83\x55\x4f\x61\xc0\xe0\x74\x61\x9f\xfd\xa2\xc4\x95\x91\xd4\x64\xd9\x53\x43\x6a\x50\x09\x4e\xf5\xac\xe1\x21\x62\xc2\x2f\x95\xe7\x94\x5b\x25\x38\xc0\x39\x7b\xd4\x4f\xaa\xf4\xa5\x72\xb8\x33\x82\xfe\xef\x8a\x0e\x24\x21\xf7\x45\xc8\x75\x96\x2e\x08\xd4\x25\x30\xfa\x88\x52\xe2\x4e\x52\x53\x02\xf8\x66\x09\xe0\x2f\xe5\xe1\x7b\x23\x48\x4b\xd8\xc7\xbe\xe2\x3e\xab\xe6\x9d\x49\x84\x17\x28\x4c\xed\x07\xeb\xd8\x8e\xef\x21\xab\x19\xa4\xbe\x09\xdb\x70\xa5\xa3\x83\x32\x5c\xc8\xb7\xcc\x83\xc3\x5e\xf5\x77\xaa\x4c\xb4\x7f\x8d\xa0\x37\x4c\x6d\x98\xb7\x0d\x16\xc9\x94\x95\xf5\x6d\x83\xca\x15\x70\x29\x1d\x05\x80\x28\x76\xe5\xda\x84\xd1\xed\xf9\x18\x7d\x4e\x49\x19\xb0\xb5\xe6\xcf\x38\xee\xce\x1a\x59\xdb\xa0\x02\xc9\x8e\xe9\xc7\x44\x18\xbe\x81\x88\xa4\x2b\x9c\xfa\x04\x86\xc0\xc9\x37\xba\x72\x63\xe7\xec\xd6\xf1\x16\x4f\x8c\x46\x82\xf3\x81\x38\x47\xc7\xc7\x95\xc1\x7c\x31\xf5\x2c\x72\x12\x53\xb5\x23\x66\xae\x9d\xa9\xfe\x3f\x4c\xd3\x93\xb3\x70\xf8\x98\x68\x3f\xed\xa6\xfb\x1e\xd5\xb4\x0b\x54\x39\xf0\xba\x1e\xb5\x7d\x0e\x42\x01\xf8\x24\x80\x57\xab\xd5\xcf\x53\xaf\xfb\x73\x4f\x79\x6a\xa0\x95\xca\xfe\xcc\x54\x3f\x65\xd6\x15\xb1\xa4\x3e\x82\x92\x18\xdf\xf4\xbe\x93\x1e\xb5\x22\xb6\x09\xd0\x00\x9e\x70\x45\x50\xf7\x70\xcc\x60\xe5\x7d\xa7\xc5\xe9\xb4\x78\xe8\x63\x71\xef\xc7\x67\xac\xe1\x6a\xb5\xfa\xd3\x94\xf1\x3f\x0d\x19\x87\xf2\x2e\x12\x9b\x17\x74\x6c\x6a\x41\xf5\x7d\xbb\x51\x97\xc3\xe1\x59\x55\x67\xa6\x92\x1a\x3a\xd1\xdc\xbd\x75\x8a\x7a\xa1\x24\xbc\xa1\x63\xfa\x18\xbd\x32\x68\x81\xb2\xa7\x2d\x31\x71\xbd\xc4\xc4\x5f\xc1\x48\xeb\x32\x03\x7d\x53\xeb\x94\x14\x4b\xfb\x93\x82\x22\xbd\x31\xb4\x94\xbd\x15\xa8\xea\x32\xb5\xd9\xf7\x74\x76\x7a\xb2\xa7\xac\xe3\x2e\x18\x70\xfe\xea\x6e\x32\x08\xbe\x1b\x26\x62\x2b\xde\x71\x81\x97\xa1\x0b\x30\xa7\x9b\x9f\x2d\x57\x64\x9d\x54\x3f\xa6\x20\x95\xa3\x44\xef\x46\x45\x74\x0e\x2d\x2a\xe7\x5e\x54\xbe\x95\x1b\xf2\xe4\x09\x9d\xe3\x71\x68\x7b\x35\xaf\x45\x75\xc2\x4e\xf5\x4a\x82\x61\x38\x54\x42\x9b\x3a\xee\x72\x3a\x57\x28\xba\xda\x07\x4a\x2e\xa5\xca\x93\xd9\xfe\xf5\x60\xd9\x0e\x74\x37\xab\x91\x77\x93\xc1\x75\x85\xda\xaf\x5c\x7c\x8d\x5d\x1e\x80\x92\x6d\x9f\x9a\x20\x5e\x60\x8d\x83\x85\x35\x39\xca\xc3\xc8\x0a\x2b\x11\x54\x99\x92\x67\x60\xf6\xca\x59\x9a\x88\x8e\xcb\xa6\xda\x10\xa9\x04\x2a\x95\xe2\x24\x3b\xce\x2e\xea\x30\xb1\xe6\x25\x6b\xbd\x9b\x4c\xc1\x2b\x6c\x0a\x20\xec\x01\x7c\x38\xad\x50\xe4\x64\x86\xab\x3b\xcd\x47\x6d\xb8\xdc\x56\xac\x9a\x41\xfd\xa3\x4b\x4e\x64\xba\xf1\x50\x29\x3a\xfa\xb9\xdc\x89\x19\xcd\x51\xef\x47\x03\xa8\xf3\x87\x13\xbd\x28\x92\x0b\x2d\x47\x4f\xea\x95\xd3\x49\x76\x1a\x6b\xa5\x84\xa8\x3e\x45\x85\xc3\xd5\xd1\xde\xc4\x19\xbc\x9c\x57\x74\x77\x96\x56\x21\x36\xff\x1e\xc2\xdf\x5e\xad\xef\x27\x62\x58\xdf\x0f\xb4\xaf\x07\xcf\x30\xec\xa0\x9c\x35\x7b\x99\x1b\x67\x53\xaf\xcd\x1f\xe5\x08\xcf\x4d\xb7\x87\x89\x29\xa5\xd3\xb3\x6c\x0d\x2e\xac\x1e\x4a\x48\x60\x46\xe5\x86\xc4\x26\x59\x54\xb1\x24\x59\x22\x1d\xd6\x19\xb9\x09\xe5\xf6\x4a\x40\x1a\x8f\xb2\xdc\x76\x69\xa6\x1d\xf3\xec\x13\xf3\x8b\xbe\x7e\xd3\x13\x96\xd7\x17\x61\x79\x27\x44\x74\x5c\x9c\x72\x48\x55\x1c\xef\x3b\xdc\x93\x28\x4d\xf9\x4a\xb6\x3a\x65\xba\x88\x0e\x69\x40\xa1\xaf\x4f\xe9\x31\x74\xe3\x1a\x02\x50\xd0\x49\xc5\x69\x22\xa1\x49\xc9\x4f\x29\xc4\x0a\x87\x4d\xcf\x5e\xf1\x3d\xc5\xcc\x9f\xaf\x4a\x11\x8f\x9b\x8b\xf0\xf8\x73\x29\x96\xce\xec\xb0\x9c\x83\x48\x15\xde\xfe\x2d\x1c\xde\x5e\xc6\x61\x0c\x28\xa0\xef\x63\x8f\x62\xeb\x57\x60\x7c\xcf\x95\xa6\x28\x4a\x0d\x07\xad\x90\x6d\x4b\x37\xf4\x82\xd6\x87\x26\xcb\x38\xff\x8c\xd1\x37\x0d\x00\xb1\x0c\x12\xc2\x3a\x49\x1b\x54\x69\x05\xa0\xd6\xfe\x33\x01\x78\x77\x11\x00\x29\x1c\x7f\x3f\x00\x3e\x58\x2a\x94\xb3\xba\x07\x68\x7d\x3f\x19\xca\x9e\x80\x3a\xaa\x09\xef\x97\xc2\x91\x54\xe8\x62\x54\xa6\x3e\xb5\xc6\x44\xed\xb9\x38\xb0\xff\xb3\x67\xc5\x31\xcc\x25\x94\x04\xcf\x8c\x0d\xe8\x9d\x72\xbf\x9f\xf9\x48\xb7\x61\x51\x6f\x63\x0a\xad\x5d\x3e\xb9\x73\x98\x1a\x0b\x38\x83\xd0\xb1\x0b\xa5\xd7\xdf\xd2\xed\xf9\x36\xe5\x59\xec\x24\x2f\x83\xb7\xca\x69\xcb\x63\x4a\x66\x46\xcb\x98\x98\x57\xc5\xc7\x84\x8e\x23\x82\x47\x5e\x2b\xbf\x96\x7b\x42\xc5\xef\x52\xdb\x7b\x1c\x00\xcf\x18\x14\xcc\xf0\x79\xb5\x9e\x6c\x70\xad\xaf\x8f\x64\xb4\xc2\x3a\x33\x8f\xb2\x57\x3b\xab\xe6\x37\x1e\xe7\x76\x7f\x04\x3d\xed\x2b\x03\x1d\x47\x31\x61\xb5\x86\x3c\x44\x8f\x1e\xb0\x84\xce\xab\x79\x0d\xf5\xad\xb4\xf5\xfd\xec\x50\xe6\x3c\x61\x89\xff\x82\xec\x44\x2f\x72\xfb\x49\x20\x0f\x7f\x44\x30\x09\xdf\x0d\xe3\xe6\xd0\xe0\x51\xc0\xc5\x2e\xd3\xf9\x96\x7d\xfc\xd6\xa1\xa1\x85\xf4\xb8\x09\x65\x55\xee\xc7\x12\xaa\x7c\xce\x0b\x40\xa6\x0a\x6d\x4c\xb2\x75\x79\xfe\x71\x34\xe7\x48\x94\x97\x66\xfe\x5b\xf6\x25\x22\xed\x99\xd4\xfa\x54\x1a\x31\x14\xda\x95\x09\x60\x24\x1e\x12\x1d\xa6\x51\xa5\xd3\xf3\xe2\xe4\x69\x64\x22\xd5\xd3\xf3\xeb\x42\xe8\xc6\xfe\x23\x98\x96\x4e\x00\xc8\xab\xf5\x64\x39\x6c\x3d\xac\xf6\xac\xcb\xdb\x75\x0e\xba\xea\x49\x39\x1a\x01\x2f\x5c\x96\x89\x07\x99\x46\x7d\x3e\xf4\x7b\x9d\x97\x59\xdf\x64\x15\xac\x22\xb4\xd7\xc5\x6c\x7e\x53\xca\x7e\xa7\x8d\xc0\x3a\x3f\x44\xb5\x40\xc4\x61\xa2\xc5\xa3\xde\xf5\xc8\x3e\xf1\xef\x06\x50\x0d\xad\x4b\x6d\xb9\xfe\x15\xee\xd9\x13\x68\x8d\xff\x4e\xed\x87\x0a\xd3\xbe\x6f\x98\xd2\x4e\xf4\xce\x47\x12\x46\x92\xc0\xa7\xdf\xe7\x5d\x16\x85\xa6\x9c\x23\xf7\xd7\x50\x2d\x9e\x27\xef\x63\x45\xf9\x51\xaa\x7b\xb5\x9e\x2c\x55\xad\x6f\xeb\x68\xdd\x81\x2b\x4b\x90\x73\xea\x72\xc2\xfb\x69\xd5\xaa\x3c\x2b\x3a\xe1\xaa\x0b\x63\xd9\x20\x7d\xdd\x5f\xcb\x8e\xfe\x12\x4e\xae\x97\x38\x99\x53\xf5\x73\x96\x9f\xd3\x26\xb3\x9f\xa7\xfd\xfb\xf4\xfd\x76\x92\x09\x3f\x43\xed\x19\xc5\x21\x35\x24\x41\x8f\xab\xc4\x25\xd4\x5f\xa0\x29\x93\x9d\xac\xf5\xbb\xf1\x4c\xf1\x4b\x72\xdb\xcf\x4f\xd7\x69\x49\x64\x24\xea\xb2\x09\x82\x7f\x48\xc9\xc4\x38\x10\x4c\xa6\xc3\x65\x16\x4f\x9b\xdb\x94\xf6\xc9\x79\x3e\xa9\x0f\x08\x7b\x05\x4f\xa9\x35\x4f\x33\xb7\x6c\x8b\xcd\x90\x4a\xf5\x73\x69\xeb\x18\xb5\x1a\x9d\x35\x4a\x30\x61\x3b\x95\x40\xa4\x31\xcc\x04\xc0\x09\x85\x2f\x0a\x1b\xf7\x9b\x6a\x7f\x44\x82\x51\x20\x9b\x69\xd8\x76\xc5\xc8\x41\x0e\x9f\x3d\x18\x95\x27\xa7\x0e\xb8\xcf\x8c\x92\xd7\x4a\xff\x45\x4e\xab\x44\xc7\x97\xa6\x43\x93\x45\xb5\x45\x71\xb7\x60\xe4\x33\xbd\xd0\xbc\x29\x88\xf5\x14\x3e\x9d\xf6\x47\x78\xd7\xe1\xcf\xf3\x92\xeb\x37\x50\xea\x3f\x66\x81\xd1\xc6\xce\x71\x72\x33\xf2\xe7\x04\xc6\x91\xa3\x51\x4e\x96\xa5\x46\x82\x28\x7d\xcc\x10\x20\xef\x1a\x7c\x0f\x5e\x49\x98\x23\x47\x5f\xf6\x23\x73\x50\xfe\x71\xe2\x7d\xa1\x40\x27\x8b\x6f\xeb\xf7\x75\x4b\xaa\x0f\x57\x0f\x84\xd2\x9a\xbb\x70\x40\xa7\x93\x93\x8f\x67\x16\x41\x34\xb9\x9b\x65\x0f\x5f\x01\x5f\xf9\xca\x69\x8e\x59\x7a\x32\x05\x9d\xdc\x41\x5e\xca\xed\xfa\xd0\x38\xe4\x48\x2f\x46\xe6\x7a\x01\x99\xbb\x21\xf3\x1c\xc0\x38\xb9\xa3\xed\xa0\x5f\xc3\x2d\xd1\x83\xf7\xc5\xe6\x50\x6a\x8e\x0a\x4d\x07\x58\x65\x52\x36\x31\xdc\x37\x70\xf5\xa3\x1d\xf9\x64\x25\xad\x62\xf7\x2f\xf5\xee\xc1\x7f\x84\xe1\xb4\x3c\x50\x2c\xb0\xb3\x0e\x7f\x1e\xad\x40\xd4\x38\xbc\x1a\xea\xc1\x47\x87\x05\x0b\xf8\xd7\x3f\x1c\x9c\xdb\x25\x5d\xa8\xbe\xd4\xba\xd8\x4a\x4a\x6e\x57\x6a\xdc\xe1\x3b\xaa\xbc\xda\x53\x0f\x81\x6c\x1e\x58\x8f\xcc\x66\x67\xd3\xd0\x7a\xd8\x44\xfb\x61\x5c\xbf\x9d\x1d\x5c\x8d\x96\xc0\xff\xf9\xf7\x7f\x24\xa1\xaa\xf4\x75\x1d\xd6\xf6\x1d\x38\x65\xa5\x12\x79\xdd\xff\x0d\x26\xd0\xe8\x9d\xa9\xfa\x21\x69\xd3\x0c\x7c\x6e\x4f\x7c\x33\x7c\xb1\x83\x90\xbf\x3b\x47\x1f\x5f\x8c\xf9\xe5\x58\xa3\x8b\x7a\x1e\x67\x63\x69\x9f\x25\xd4\xdf\x3a\xa5\xdf\xf6\xd9\x9d\x71\x11\x62\xca\x2b\x7c\xf4\x79\x63\x79\x51\xb9\x17\xf4\x38\x57\xb7\xa6\xea\x0f\x95\x65\xd4\x6c\x2e\x98\x12\x55\xba\x39\xac\x02\xe6\x5d\xa3\x12\x49\x8f\xba\x59\x50\xed\x6d\xcf\x4e\xf9\xa7\x63\xdf\x4b\x4d\xe9\xfd\x82\x5c\xeb\x66\x17\xf2\xfd\x7d\x72\x1e\xf5\xc4\xea\x63\x8b\x8f\xc8\x5b\xe2\x65\xcf\x01\xf1\xa2\x9d\x98\x69\xa2\x89\x95\xf7\x36\x6a\x3e\x0c\x47\x49\x3b\x5e\xce\xff\x87\x25\x57\x92\x3e\x42\xcc\xdf\x74\x5d\x58\x5a\xf5\xec\x8e\x53\x89\xa4\xb4\xa6\x7c\xe0\x98\xcf\xa6\xea\x6a\x4e\x7f\x77\xa0\x65\xe9\x28\x94\xe8\x59\x12\x90\xfa\x5c\x34\xfc\xf9\x92\xb5\xdf\x60\x3b\x7a\xbe\x4f\xb1\x5f\x86\xdb\x64\x75\x6d\xfd\xa1\xc6\x8d\x66\x13\x2f\x40\x2d\xd7\xce\xd3\xf1\xdf\x10\x9e\x62\xf7\x26\xd8\x37\x92\x7e\xae\xc2\x17\x85\xb5\x34\x8e\xfa\x91\x61\x66\xb2\x28\xb2\xfe\xf9\xf9\xf2\x2f\x06\x60\x9f\xc1\x5b\xfd\xec\x92\x4b\xb5\xca\x52\xfa\xdf\xb9\x16\x12\x40\x6b\xd9\x4d\x59\x41\xa2\x9f\x1d\x1e\xba\xef\x3b\xe4\x43\x22\x5d\xba\x93\xae\xbf\x35\x2d\x75\x52\x7f\x25\xed\x9f\xb4\x9d\x46\x2c\xfd\xd0\x9d\x8a\x98\x0d\xcc\x74\xf3\x2a\x73\xca\x5f\x5d\x51\xf0\xa0\x0f\x43\xfb\x51\x78\x15\x62\x5e\x16\xc8\x56\x7d\xd2\x5d\xbb\xf7\xe1\xf3\xd0\xb2\x90\x55\xbd\x5b\x15\xa2\xa3\x4f\xa3\xd0\xc7\xb6\x5c\xd2\x2c\x05\x23\x99\x99\xe9\x68\xff\x2b\x00\x00\xff\xff\x3d\xcd\xda\x58\xb1\x3f\x00\x00")
func complySoc2StandardsTsc2017YmlBytes() ([]byte, error) {
return bindataRead(
_complySoc2StandardsTsc2017Yml,
"comply-soc2/standards/TSC-2017.yml",
)
}
func complySoc2StandardsTsc2017Yml() (*asset, error) {
bytes, err := complySoc2StandardsTsc2017YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "comply-soc2/standards/TSC-2017.yml", size: 16305, mode: os.FileMode(420), modTime: time.Unix(1600110230, 0)}
a := &asset{bytes: bytes, info: info} a := &asset{bytes: bytes, info: info}
return a, nil return a, nil
} }
@ -1245,7 +1224,7 @@ func complySoc2TemplatesDefaultLatex() (*asset, error) {
return a, nil return a, nil
} }
var _complySoc2TemplatesIndexAce = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x59\x6d\x6f\xe3\xb8\x11\xfe\x9e\x5f\x31\x50\x3e\xd8\xc1\xc6\x74\x92\x2b\xae\x87\xbb\xea\x8a\x5c\xb2\x8b\x2e\x2e\xb7\x09\x9a\xa0\x40\xb1\x38\x14\x34\x39\xb2\x18\x53\xa4\x96\xa4\x9c\xe8\xbc\xf9\xef\x05\xa9\x17\xcb\xb2\x9c\x04\x5d\xa7\x28\x9a\x0f\x0e\xcd\x97\x79\x66\x86\x0f\x87\x33\x74\x0c\x5c\x33\x57\xe6\x08\xa9\xcb\xe4\x81\xff\x00\x49\xd5\x3c\x46\x75\x00\x90\x22\xe5\x07\x00\x00\x19\x3a\x0a\x2c\xa5\xc6\xa2\x8b\x0b\x97\x4c\x7e\x08\xdd\x4e\x38\x89\xb0\x5a\x91\x1b\xa3\xef\x91\x39\xf2\x89\x66\xf8\xf4\x14\xc6\xa4\x50\x0b\x30\x28\xe3\xc8\xba\x52\xa2\x4d\x11\x5d\x04\xa9\xc1\x24\x8e\x52\xe7\x72\xfb\xe3\x74\xca\xb8\xba\xb7\x84\x49\x5d\xf0\x44\x52\x83\x84\xe9\x6c\x4a\xef\xe9\xe3\x54\x8a\x99\x9d\xce\x0a\x99\xd1\xe9\x09\xf9\x9e\x9c\x4d\x99\xad\xbf\x93\x4c\x28\xc2\xac\x8d\xf6\x8a\x62\x1f\xa8\x63\x69\x8d\x65\xa9\xe2\xd6\x69\x85\xdd\xb1\x4d\x5c\xcb\x8c\xc8\x1d\x78\xcf\xc5\x91\xc3\x47\x37\xbd\xa7\x4b\x5a\xf5\x46\x60\x0d\x7b\x35\x7c\xa6\x33\x54\x8e\xdc\xdb\xe9\x19\x39\x3b\x23\x27\x4d\x87\x87\xbb\xdf\x3b\x9a\xa4\x0e\xcd\xf4\x94\x78\xa0\xd0\x7e\x23\x9c\xdc\xa0\x73\x25\x33\x5a\x4d\x4f\xc8\xe9\x29\x39\xe9\xf4\x6c\x40\x06\x66\x29\x9a\x61\x1c\x2d\x05\x3e\xe4\xda\xb8\x08\x98\x56\x0e\x95\x8b\xa3\x07\xc1\x5d\x1a\x73\x5c\x0a\x86\x93\xf0\xe5\x18\x84\x12\x4e\x50\x39\xb1\x8c\x4a\x8c\x4f\x2b\x31\x31\x30\x6b\xeb\xd6\x5a\xe7\xd0\x01\x9e\xe2\x45\xf0\x29\xe5\xfc\xfd\x12\x95\xbb\x12\xd6\xa1\x42\x33\x8e\x2e\xaf\x7f\xbb\xa8\xc0\xae\x34\xe5\xc8\xa3\x63\x48\x0a\xc5\x9c\xd0\x6a\x8c\x7e\xea\x11\xac\x6a\x29\x1d\x39\x5f\x0a\x34\xe5\x2d\x4a\x64\x4e\x9b\x73\x29\xc7\x23\xe2\x0d\x1b\x1d\x91\x44\x9b\xf7\x94\xa5\xe3\xb5\x10\xd9\x95\x00\x80\x92\x08\xa5\xd0\xfc\xed\xee\xb7\x2b\x88\xa1\xf2\xca\x85\xf7\x8a\xd3\xb7\xce\x08\x35\x1f\x8f\xa3\xe8\x5d\x77\xda\x11\x71\x46\x64\xe3\xa3\x63\x67\x0a\x3c\x82\xe9\x14\xbe\x9f\x24\x02\x25\x07\x7c\xcc\x0d\x5a\x2b\xb4\xb2\x2d\xc4\xd3\xd1\x41\xdb\xa8\x5b\x8d\x32\x60\x53\xfd\x30\xf6\xce\xee\xea\x24\x12\x18\xa7\xc2\x3a\x6d\x4a\x62\x30\x97\x94\xe1\xad\xa3\x0e\x37\xf5\x06\x18\x9a\x33\x56\x85\x94\xc7\x50\x7d\x8e\x0e\x47\xef\x82\xf0\xb5\x2e\x07\x6d\x73\x49\x0d\x08\x87\x99\x85\x78\xed\xc7\x39\xba\xf7\x12\x7d\xd3\xfe\x52\x5e\x48\x6a\xad\x0f\x20\xe3\x91\xd3\xf9\x44\xd1\xe5\x68\x2d\x29\xd1\x06\xc6\x41\x46\x7c\xf2\x13\x88\xbf\x04\x51\x44\xa2\x9a\xbb\xf4\x27\x10\xef\xde\x6d\x6a\xdb\xa0\x41\x5c\x81\x7e\x16\xbf\x77\x46\xbd\xc5\xbe\x9b\x38\x3a\xf7\x80\x10\xc7\x31\x44\x57\x1f\xa3\xbe\xc9\xd3\x29\x28\xba\x14\x73\x1a\xbc\xe7\xe8\xcc\x6e\x0c\xb7\x72\x98\x57\xdd\x93\x8a\x78\xe6\x52\xa1\x6c\xe5\xe5\xbe\x3c\x80\xde\x74\xca\xf9\x78\x24\xec\x84\x32\x27\x96\xd8\xb1\x37\x78\x0f\x50\x5a\x7c\x49\x84\xc1\x4c\x2f\xf1\x19\x29\x07\x2f\x48\x9c\x4e\xc1\x62\xe0\xc7\x0e\xeb\x04\x0f\x0e\xea\xf3\xe6\x25\x6d\x52\xc1\x39\xaa\xff\xc8\xa6\xc6\x2d\xc3\x22\x0e\x86\xda\x4d\xcb\xff\x9f\x69\x5e\x56\xf1\xac\xb2\x8b\xa4\x68\x34\x11\x76\x92\x1b\x91\x51\x53\xfa\xa6\xcd\xa8\x94\xf5\x9a\x30\x3e\x69\x57\x85\xae\x7a\x23\xd1\x74\xd0\xd2\x53\xf2\xdc\x8d\x57\xfd\xe5\xc4\x16\xb3\x6a\xda\x8d\x96\x82\x95\xc7\x70\x63\x34\x43\x5e\x18\x3c\x06\xaa\x38\x9c\x17\x5c\x38\xf0\xe7\xa7\xb0\x1b\x1a\x24\x5a\xbb\x56\x92\xa2\x4b\xe2\x19\xe7\x95\x9d\xe9\x47\xe4\xbe\x91\x14\x52\x86\x30\xd8\x01\x1c\x54\x15\xa0\x90\xc1\x4c\xf1\x07\x4e\xfe\xd4\xf3\xb6\x14\xa4\x3e\x61\x44\x2f\xd1\xf8\xb8\xdb\x9b\x01\x60\x9d\xd1\x6a\xbe\xd5\x0d\x40\x41\x2b\x26\x05\x5b\xc4\xd1\x3a\xd0\xfe\x18\x22\xcb\xa8\x91\x36\x3a\x8a\xe0\x7a\x58\x72\x07\x5b\x51\x63\xa8\x67\xac\xdd\x0f\xfa\x5a\x9e\xc7\xff\xb4\x4b\x7a\x47\x83\xdc\x6f\x90\xd8\x17\x7e\x23\xcd\xa3\xdf\x0c\x4b\xee\x62\x37\xa4\xd8\x17\x7a\x2b\x2f\xe0\xef\x92\xde\xd1\xc0\x3a\xaa\x38\x35\x7c\x4f\x0a\x24\x86\x66\xf8\xa0\xcd\x22\x28\xf0\xa1\xfd\xd6\x13\x33\xed\xaa\x80\x4b\xc1\x51\x31\xdc\x9a\xf3\x3c\x54\xb3\xcc\x03\xbd\xaf\xdb\xf0\x0f\x5a\xc8\xea\xf8\x1c\x36\x3c\x24\x4d\x00\x68\xf0\xda\xa3\x42\xea\x14\xa3\x06\x9e\x49\xcd\x16\x5f\x0a\xed\xd6\x9a\xa4\xdf\xc1\x5d\x2a\x2c\x58\xe1\xd0\x27\x24\x56\x4b\xc1\xa9\x43\x0b\x54\xca\xf6\x0a\xb3\x3e\xf9\xa4\x0e\x39\x38\x0d\x2e\xdd\x1d\x1a\xd2\xe6\x74\x12\xa6\x65\x91\xa9\x70\xae\x97\x0c\x95\x43\x83\xbc\x1b\x77\xfc\xa8\x1f\xd4\x0a\x27\x2e\x15\x86\x77\x9c\xc3\xc5\x72\xc3\x55\xeb\x60\xe3\x57\x7c\x47\x52\x6a\x27\x3e\x6f\x9b\x34\x82\xc1\x67\x37\x46\x4b\xb8\x33\x94\x2d\x44\x67\x53\x1b\xa4\xad\x25\xcf\xc2\xf9\x8a\x40\xa8\x39\xdc\x52\x27\x6c\x22\xd6\x00\xb6\x37\x31\x28\xd5\xdb\xd6\xd5\x8a\xf8\xa8\x67\x49\xb3\xa6\x95\xd2\x89\xa0\xdf\xa6\xd7\x9d\x76\x54\x7e\x93\x4e\x41\x42\xab\xcf\x7f\x79\xb7\xda\x63\xbb\xef\xfd\x3a\x0f\xa9\x01\xdc\x09\xb6\x40\xf7\x1a\xbf\x50\x70\xd4\xcc\xd1\xc5\xff\x9a\x49\xaa\x16\x75\x49\xb5\x5a\x91\x2b\xa1\x16\x96\xb4\x8a\x5e\xe7\xa8\x9e\x9e\xa2\xad\x58\xd1\xfa\xb5\x37\x73\x4f\xf6\x5c\x4b\x8e\xd6\xd5\xf6\xbc\xca\x9c\x01\x85\x82\x8c\x4b\x5a\xda\xa7\x27\xe0\xb4\xb4\x7b\xda\xf3\x67\x4d\xda\x62\x41\x9d\x0e\xec\x79\xbf\xbd\xb3\xe1\xef\xf8\xa5\x40\xbb\x8f\xed\x0e\x3a\xbe\xb8\xd5\x9d\x59\x7b\x3d\xce\x7b\xb6\xe3\x5c\xca\x97\xcd\xd8\x5b\x18\xe8\x0c\xba\x07\x5d\x0d\xda\x67\xdd\x31\x85\xdc\xe8\xb9\x2f\xec\x48\xdb\x58\x27\xaf\xb0\xa4\xb2\xc0\x78\x53\xdb\x0b\xa9\xad\x8f\xa2\x90\xd1\xc7\x78\xb7\x21\x87\xeb\x14\xe9\xdb\xae\xc6\x6e\xbe\xbb\xe1\xc8\x2a\x73\xd8\x95\x7c\x7d\xf5\x96\xf9\xfb\x1a\xa8\x82\xe6\x92\x06\x9d\x84\x9b\x53\x9b\x39\x55\xe2\x8f\xaa\xd6\xf2\x79\xb2\xef\x64\x3a\xcb\xa5\xa0\xfe\x7e\x47\xb5\x14\x46\xab\x50\x38\xd6\x52\x1d\x9d\x49\x24\xd5\xe7\x76\xb2\xeb\xda\xe7\xab\xfa\xfb\x66\x82\xec\x52\xf0\x37\x74\xbf\xef\xdc\x57\xf2\x65\xd6\xef\xbe\xb9\xfc\xb0\x16\xbc\x51\x2a\x78\xe6\x18\xaa\xe6\x08\x64\x6d\x36\x6c\xd4\x04\x7d\x64\xee\xc9\xb6\x55\x39\x34\x03\xb5\x06\x5b\x63\x5b\x54\x0f\xe4\x5e\xad\xc8\x75\xe1\xf2\xc2\x7d\x10\x12\x55\x90\xb9\x79\x06\x86\x88\xde\x5f\xb1\x61\x0c\xaa\xe6\x3e\x3e\x6c\x52\xda\xb7\x65\xcb\x60\xb2\xfc\x15\xe6\x9e\x21\x2a\xd0\x60\x86\x29\x5d\x0a\x6d\x3c\x57\x5a\xd7\x01\x66\xb9\xd4\x25\xfa\x94\x4c\xf1\xf0\x68\x64\x28\x73\xda\xd8\xff\x55\x7e\x34\x86\xfe\xbf\xb0\xa3\x2d\x32\xde\x98\x1f\xc3\xc5\x8c\x8f\x26\xe8\xeb\x82\x19\x82\xcd\x91\x89\x44\x30\xb0\x0e\x73\x0b\x2e\xa5\x0e\xa8\x41\x70\x74\x81\x0a\x84\x02\x83\x36\xd7\xca\xa2\xcf\xd3\x17\x58\x42\x78\xdc\x7b\x53\xa2\x7c\xbc\xec\xf7\xdc\xb2\x14\x79\x21\x11\xc6\x7e\x0f\x21\xd1\x26\xa3\xee\xe8\x15\xb4\x69\xed\xff\x16\xe2\x7c\xbc\xec\x75\xaf\x56\x22\x01\x72\x61\xb4\xda\x9a\x1f\x9e\x33\xfd\xa2\x81\xd1\xd5\x0a\xa5\x1d\x80\xb8\x56\xc0\x31\xa3\x8a\xf7\x67\x2b\xbe\x9b\x42\x6d\x0d\xfa\xb6\x0c\xba\x1d\x2c\x75\xbf\xd6\xb4\x29\xeb\xab\xa6\x2a\x00\xc0\xb6\xb5\xcd\xac\xec\x5f\x42\xe1\x42\xa6\xd9\xb3\xbc\x19\x7e\xa8\x79\x99\x44\x4d\xa9\xf6\x2b\x96\xaf\xe1\x57\x5b\x3c\xfd\x75\xe7\x08\xfc\x52\xbe\xcc\xae\xa6\xf0\x79\x05\xb7\xea\xa9\xbf\x62\xf9\x52\xf8\xa9\xfd\x3e\xcc\x47\x80\xf5\x1b\xd9\x6a\x45\x2e\xb1\x2a\xee\xc5\x00\xd5\x3c\x43\x87\xaa\xc4\x0a\x34\xf8\xbc\x60\x0c\xad\x85\x7f\xf6\xa2\xc3\x2e\x9a\x7e\xd2\x2f\xf0\x73\xc0\x9a\xd6\x57\xad\x2a\xbf\xf4\x3d\x00\x40\x5b\x06\xfc\xb9\x8d\xbd\xaf\x89\xb6\x5b\x82\x76\x1f\x99\xd0\x95\x68\xed\xd0\x90\xea\xdf\x3a\x3f\xed\xbf\x01\x36\xc7\xe6\xd9\x54\x33\xef\xbe\x57\x5c\x77\x12\xb0\xfa\x86\xbd\xd0\x2a\x11\x1c\x95\x13\x54\xc2\xd9\xc9\xe9\x0f\x07\x03\x3f\xb0\x88\x04\xc6\x0f\x42\x71\xfd\x40\xa4\x66\xb4\x7a\x71\xa5\x36\x8d\xe3\xa8\xf3\xa2\xde\x7f\x21\x0c\xdd\xbd\xe7\xe0\x25\x35\xe0\x57\x5e\xe8\x2c\xd7\x2a\x3c\xaf\xc4\x30\x24\x9a\xd8\x5c\x0a\x37\x1e\x1d\xb6\x6f\xc3\xe1\x57\x8c\x8d\xa5\xf5\xaf\x03\x3f\x9f\x76\x1f\xad\x3d\x82\xaf\xfa\x84\xaa\xf2\xcc\xb8\x87\xf7\xf9\x74\xfd\x43\x81\x17\xf9\x39\x6a\x34\x8e\x8e\xa3\x75\xf6\x1c\x1d\x47\x4d\x6a\xe4\x9b\x6d\x7c\x8e\x8e\xa3\x36\xa2\x45\xbf\x13\xa1\x38\x3e\x5e\x27\xe3\x0e\xe2\x11\xfc\x1c\xc3\xc9\xe6\x3b\x7a\x70\x4d\x77\x4e\x3b\xd6\x7d\xd5\xf6\x9f\xff\x0e\x00\x00\xff\xff\x33\xd4\x85\xf9\xaf\x1d\x00\x00") var _complySoc2TemplatesIndexAce = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x59\x6d\x6f\x23\xb7\xf1\x7f\xef\x4f\x31\xd8\x7b\x21\x19\x67\x51\xf6\xe5\x8f\xfc\x83\xa4\x9b\xc2\x67\xdf\xa1\x87\x38\x67\xa3\x36\x0a\x14\x87\xa0\xa0\xc8\x59\x2d\x2d\x2e\xb9\x47\x72\x65\x2b\x8a\xbf\x7b\x41\xee\xa3\x56\x2b\xcb\xc8\xc9\x45\x51\xbf\x90\x29\x3e\xcc\x6f\x66\xf8\xe3\x70\x86\x8a\x81\x6b\xe6\x56\x39\x42\xea\x32\x79\xe4\x3f\x40\x52\x35\x8f\x51\x1d\x01\xa4\x48\xf9\x11\x00\x40\x86\x8e\x02\x4b\xa9\xb1\xe8\xe2\xc2\x25\x93\x1f\x42\xb7\x13\x4e\x22\xac\xd7\xe4\xc6\xe8\x7b\x64\x8e\x7c\xa6\x19\x3e\x3d\x85\x31\x29\xd4\x02\x0c\xca\x38\xb2\x6e\x25\xd1\xa6\x88\x2e\x82\xd4\x60\x12\x47\xa9\x73\xb9\xfd\x71\x3a\x65\x5c\xdd\x5b\xc2\xa4\x2e\x78\x22\xa9\x41\xc2\x74\x36\xa5\xf7\xf4\x71\x2a\xc5\xcc\x4e\x67\x85\xcc\xe8\xf4\x94\x7c\x4f\xde\x4d\x99\xad\xbe\x93\x4c\x28\xc2\xac\x8d\x0e\x8a\x62\x1f\xa8\x63\x69\x85\x65\xa9\xe2\xd6\x69\x85\xdd\xb1\x4d\x5c\xcb\x8c\xc8\x1d\x78\xcf\xc5\x91\xc3\x47\x37\xbd\xa7\x4b\x5a\xf6\x46\x60\x0d\x7b\x31\x7c\xa6\x33\x54\x8e\xdc\xdb\xe9\x3b\xf2\xee\x1d\x39\xad\x3b\x3c\xdc\xfd\xc1\xd1\x24\x75\x68\xa6\x67\xc4\x03\x85\xf6\x2b\xe1\xe4\x06\x9d\x5b\x31\xa3\xd5\xf4\x94\x9c\x9d\x91\xd3\x4e\xcf\x06\x64\x60\x96\xa2\x19\xc6\xd1\x52\xe0\x43\xae\x8d\x8b\x80\x69\xe5\x50\xb9\x38\x7a\x10\xdc\xa5\x31\xc7\xa5\x60\x38\x09\x5f\x4e\x40\x28\xe1\x04\x95\x13\xcb\xa8\xc4\xf8\xac\x14\x13\x03\xb3\xb6\x6a\xb5\x3a\x87\x0e\xf0\x14\x2f\x82\x4f\x29\xe7\x1f\x96\xa8\xdc\x95\xb0\x0e\x15\x9a\x71\x74\x79\xfd\xeb\x45\x09\x76\xa5\x29\x47\x1e\x9d\x40\x52\x28\xe6\x84\x56\x63\xf4\x53\x8f\x61\x5d\x49\xe9\xc8\xf9\x5a\xa0\x59\xdd\xa2\x44\xe6\xb4\x39\x97\x72\x3c\x22\xde\xb0\xd1\x31\x49\xb4\xf9\x40\x59\x3a\x6e\x85\xc8\xae\x04\x00\x94\x44\x28\x85\xe6\x6f\x77\xbf\x5e\x41\x0c\xa5\x57\x2e\xbc\x57\x9c\xbe\x75\x46\xa8\xf9\x78\x1c\x45\x6f\xbb\xd3\x8e\x89\x33\x22\x1b\x1f\x9f\x38\x53\xe0\x31\x4c\xa7\xf0\xfd\x24\x11\x28\x39\xe0\x63\x6e\xd0\x5a\xa1\x95\x6d\x20\x9e\x8e\x8f\x9a\x46\xd5\xaa\x95\x01\x9b\xea\x87\xb1\x77\x76\x57\x27\x91\xc0\x38\x15\xd6\x69\xb3\x22\x06\x73\x49\x19\xde\x3a\xea\x70\x53\x6f\x80\xa1\x39\x63\x55\x48\x79\x02\xe5\xe7\xe8\xcd\xe8\x6d\x10\xde\xea\x72\xd4\x34\x97\xd4\x80\x70\x98\x59\x88\x5b\x3f\xce\xd1\x7d\x90\xe8\x9b\xf6\xfd\xea\x42\x52\x6b\x7d\x00\x19\x8f\x9c\xce\x27\x8a\x2e\x47\xad\xa4\x44\x1b\x18\x07\x19\xf1\xe9\x4f\x20\xfe\x12\x44\x11\x89\x6a\xee\xd2\x9f\x40\xbc\x7d\xbb\xa9\x6d\x8d\x06\x71\x09\xfa\x45\xfc\xd6\x19\xf5\x16\xfb\x6e\xe2\xe8\xdc\x03\x42\x1c\xc7\x10\x5d\x7d\x8a\xfa\x26\x4f\xa7\xa0\xe8\x52\xcc\x69\xf0\x9e\xa3\x33\xbb\x31\xdc\xc8\x61\x5e\x75\x4f\x2a\xe2\x99\x4b\x85\xb2\xa5\x97\xfb\xf2\x00\x7a\xd3\x29\xe7\xe3\x91\xb0\x13\xca\x9c\x58\x62\xc7\xde\xe0\x3d\x40\x69\x71\x9f\x08\x83\x99\x5e\xe2\x33\x52\x8e\xf6\x48\x9c\x4e\xc1\x62\xe0\xc7\x0e\xeb\x04\x0f\x0e\xea\xf3\x66\x9f\x36\xa9\xe0\x1c\xd5\x9f\xb2\xa9\x76\xcb\xb0\x88\xa3\xa1\x76\xdd\xf2\xff\x67\x9a\xaf\xca\x78\x56\xda\x45\x52\x34\x9a\x08\x3b\xc9\x8d\xc8\xa8\x59\xf9\xa6\xcd\xa8\x94\xd5\x9a\x30\x3e\x69\x56\x85\xae\x6a\x23\xd1\x74\xd0\xd2\x33\xf2\xdc\x8d\x57\xfe\xe5\xc4\x16\xb3\x72\xda\x8d\x96\x82\xad\x4e\xe0\xc6\x68\x86\xbc\x30\x78\x02\x54\x71\x38\x2f\xb8\x70\xe0\xcf\x4f\x61\x37\x34\x48\xb4\x76\x8d\x24\x45\x97\xc4\x33\xce\x2b\x3b\xd3\x8f\xc8\x7d\x23\x29\xa4\x0c\x61\xb0\x03\x38\xa8\x2a\x40\x21\x83\x99\xe2\x77\x9c\xfc\x5f\xcf\xdb\x52\x90\xea\x84\x11\xbd\x44\xe3\xe3\x6e\x6f\x06\x80\x75\x46\xab\xf9\x56\x37\x00\x05\xad\x98\x14\x6c\x11\x47\x6d\xa0\xfd\x31\x44\x96\x51\x2d\x6d\x74\x1c\xc1\xf5\xb0\xe4\x0e\xb6\xa2\xc6\x50\xcf\x58\x7b\x18\xf4\x56\x9e\xc7\xff\xbc\x4b\x7a\x47\x83\xdc\x6f\x90\x38\x14\x7e\x2d\xcd\xa3\xdf\x0c\x4b\xee\x62\xd7\xa4\x38\x14\x7a\x23\x2f\xe0\xef\x92\xde\xd1\xc0\x3a\xaa\x38\x35\xfc\x40\x0a\x24\x86\x66\xf8\xa0\xcd\x22\x28\xf0\xb1\xf9\xd6\x13\x33\xed\xaa\x80\x4b\xc1\x51\x31\xdc\x9a\xf3\x3c\x54\xbd\xcc\x03\x7d\xa8\xda\xf0\x0f\x5a\xc8\xf2\xf8\xbc\xa9\x79\x48\xea\x00\x50\xe3\x35\x47\x85\x54\x29\x46\x05\x3c\x93\x9a\x2d\xbe\x16\xda\xb5\x9a\xa4\xdf\xc1\x5d\x2a\x2c\x58\xe1\xd0\x27\x24\x56\x4b\xc1\xa9\x43\x0b\x54\xca\xe6\x0a\xb3\x3e\xf9\xa4\x0e\x39\x38\x0d\x2e\xdd\x1d\x1a\xd2\xfa\x74\x12\xa6\x65\x91\xa9\x70\xae\x97\x0c\x95\x43\x83\xbc\x1b\x77\xfc\xa8\x1f\xd4\x0a\x27\x2e\x15\x86\x77\x9c\xc3\xc5\x72\xc3\x55\x6d\xb0\xf1\x2b\xbe\x23\x29\xb5\x13\x9f\xb7\x4d\x6a\xc1\x70\x61\x84\x43\x23\xb4\xba\x33\x94\x2d\x44\x67\x57\x6b\xa8\xad\x35\xcf\xe2\xf9\x92\x40\xa8\x39\xdc\x52\x27\x6c\x22\x5a\x04\xda\x9b\x18\xb4\xea\xed\xeb\x7a\x4d\x7c\xd8\xb3\xa4\x5e\xd3\x48\xe9\x84\xd0\x6f\xd3\xeb\x4e\x3b\x2a\xc1\xe7\x74\x46\x4b\xfb\x67\x74\x0a\x12\x1a\x7d\xfe\xc3\xdb\xd5\x9c\x5b\x38\xf0\x7e\x9d\x87\xdc\x00\xee\x04\x5b\xa0\x7b\x89\x5f\x28\x38\x6a\xe6\xe8\xe2\x7f\xcd\x24\x55\x8b\xaa\xa6\x5a\xaf\xc9\x95\x50\x0b\x4b\x1a\x45\xaf\x73\x54\x4f\x4f\xd1\x56\xb0\x68\xfc\xda\x9b\x79\x20\x7b\xae\x25\x47\xeb\x2a\x7b\x5e\x64\xce\x80\x42\x41\xc6\x25\x5d\xd9\xa7\x27\xe0\x74\x65\x0f\xb4\xe7\xcf\x9a\xb4\xc5\x82\x2a\x1f\x38\xf0\x7e\x7b\x67\xc3\xdf\xf1\x6b\x81\xf6\x10\xdb\x1d\x74\xdc\xbb\xd5\x9d\x59\x07\x3d\xce\x07\xb6\xe3\x5c\xca\xfd\x66\x1c\x2c\x0c\x74\x06\xdd\x83\x2e\x07\xed\xb3\xee\x98\x42\x6e\xf4\xdc\x57\x76\xa4\x69\xb4\xd9\x2b\x2c\xa9\x2c\x30\xde\xd4\xf6\x42\x6a\xeb\xa3\x28\x64\xf4\x31\xde\x6d\xc8\x9b\x36\x47\xfa\xb6\xbb\xb1\x9b\xf0\x6e\x38\xb2\x4c\x1d\x76\x65\x5f\x7f\x78\xcb\xfc\x85\x0d\x54\x41\x7d\x4b\x83\x4e\xc2\xd5\xa9\xcd\x9c\x2a\xf1\x7b\x59\x6c\xf9\x44\xd9\x77\x32\x9d\xe5\x52\x50\x7f\xc1\xa3\x5a\x0a\xa3\x55\xa8\x1c\x2b\xa9\x8e\xce\x24\x92\xf2\x73\x3b\xdb\x75\xcd\xfb\x55\xf5\x7d\x33\x43\x76\x29\xf8\x2b\xba\xdf\x77\xee\x4b\xf9\x55\xd6\xef\xbe\xb9\xfc\xd8\x0a\xde\xa8\x15\x3c\x73\x0c\x55\x73\x04\xd2\x9a\x0d\x1b\x45\x41\x1f\x99\x7b\xb2\x6d\x95\x0e\xf5\x40\xa5\xc1\xd6\xd8\x16\xd5\x03\xb9\xd7\x6b\x72\x5d\xb8\xbc\x70\x1f\x85\x44\x15\x64\x6e\x9e\x81\x21\xa2\xf7\x57\x6c\x18\x83\xaa\xbe\x8f\xdf\xd4\x39\xed\xeb\xb2\x65\x30\x5b\xfe\x03\xe6\x9e\x21\x2a\xd0\x60\x86\x29\x5d\x0a\x6d\x3c\x57\x1a\xd7\x01\x66\xb9\xd4\x2b\xf4\x39\x99\xe2\xe1\xd5\xc8\x50\xe6\xb4\xb1\xff\xad\xfc\xa8\x0d\xfd\x5f\x61\x47\x53\x65\xbc\x32\x3f\x86\xab\x19\x1f\x4d\xd0\x17\x06\x33\x04\x9b\x23\x13\x89\x60\x60\x1d\xe6\x16\x5c\x4a\x1d\x50\x83\xe0\xe8\x02\x15\x08\x05\x06\x6d\xae\x95\x45\x9f\xa8\x2f\x70\x05\xe1\x75\xef\x55\x89\xf2\xe9\xb2\xdf\x73\xcb\x52\xe4\x85\x44\x18\xfb\x3d\x84\x44\x9b\x8c\xba\xe3\x17\xd0\xa6\xb1\xff\x5b\x88\xf3\xe9\xb2\xd7\xbd\x5e\x8b\x04\xc8\x85\xd1\x6a\x6b\x7e\x78\xcf\xf4\x8b\x06\x46\xd7\x6b\x94\x76\x00\xe2\x5a\x01\xc7\x8c\x2a\xde\x9f\xad\xf8\x6e\x0a\xb5\x55\xe3\xeb\x52\xa8\xa9\x47\xe1\x2e\xb0\xbf\xcf\xa4\x92\x3f\xab\x10\x6c\xda\xda\x35\xc4\x95\x76\x69\x5d\x22\x54\x27\x08\x39\xcc\x56\xfd\x5b\x2a\xdc\xd8\x34\x7b\x96\x58\xc3\x4f\x39\xfb\x59\xd6\x14\x73\xbf\xe0\xea\x25\x0c\x6c\xca\xab\xbf\xee\x1c\x81\xf7\xab\xfd\xfc\xab\xed\xde\x4f\x3e\x56\xcd\xfc\x05\x57\xfb\x02\x54\xb5\x31\xc3\x8c\x05\x68\x9f\xd1\xd6\x6b\x72\x89\x65\xfd\x2f\x06\xc8\xe8\x39\x3c\x54\x47\x96\xa0\xc1\xe9\x05\x63\x68\x2d\xfc\xb3\x17\x3f\x76\x11\xf9\xb3\xde\xc3\xe0\x01\x6b\x1a\x5f\x35\xaa\xbc\xef\x7b\x00\x80\x36\x14\xf8\xff\x26\x3a\xbf\x24\x1e\x6f\x09\xda\x7d\xa8\x42\x57\xa2\xb5\x43\x43\xca\x7f\x6d\x06\xdb\x7f\x26\xac\xcf\xd5\xb3\xc9\x68\xde\x7d\xd2\xb8\xee\xa4\x68\xd5\x1d\x7c\xa1\x55\x22\x38\x2a\x27\xa8\x84\x77\xa7\x67\x3f\x1c\x0d\xfc\x06\x23\x12\x18\x3f\x08\xc5\xf5\x03\x91\x9a\xd1\xf2\x51\x96\xda\x34\x8e\xa3\xce\xa3\x7b\xff\x11\x31\x74\xf7\x5e\x8c\x97\xd4\x80\x5f\x79\xa1\xb3\x5c\xab\xf0\x02\x13\xc3\x90\x68\x62\x73\x29\xdc\x78\xf4\xa6\x79\x3e\x0e\x3f\x74\x6c\x2c\xad\x7e\x40\xf8\xf9\xac\xfb\xae\xed\x11\x7c\x5d\x28\x54\x99\x89\xc6\x3d\xbc\x2f\x67\xed\x6f\x09\x5e\xe4\x97\xa8\xd6\x38\x3a\x89\xda\xfc\x3a\x3a\x89\xea\xe4\xc9\x37\x9b\x08\x1e\x9d\x44\xcd\xc3\x5b\xf4\x1b\x11\x8a\xe3\xe3\x75\x32\xee\x20\x1e\xc3\xcf\x31\x9c\x6e\x3e\xb5\x07\xd7\x74\xe7\x34\x63\xdd\x87\x6f\xff\xf9\xef\x00\x00\x00\xff\xff\x9a\x1d\x5e\x5f\xd2\x1d\x00\x00")
func complySoc2TemplatesIndexAceBytes() ([]byte, error) { func complySoc2TemplatesIndexAceBytes() ([]byte, error) {
return bindataRead( return bindataRead(
@ -1260,7 +1239,7 @@ func complySoc2TemplatesIndexAce() (*asset, error) {
return nil, err return nil, err
} }
info := bindataFileInfo{name: "comply-soc2/templates/index.ace", size: 7599, mode: os.FileMode(420), modTime: time.Unix(1600197688, 0)} info := bindataFileInfo{name: "comply-soc2/templates/index.ace", size: 7634, mode: os.FileMode(420), modTime: time.Unix(1600201870, 0)}
a := &asset{bytes: bytes, info: info} a := &asset{bytes: bytes, info: info}
return a, nil return a, nil
} }
@ -1370,8 +1349,7 @@ var _bindata = map[string]func() (*asset, error){
"comply-soc2/procedures/onboarding.md": complySoc2ProceduresOnboardingMd, "comply-soc2/procedures/onboarding.md": complySoc2ProceduresOnboardingMd,
"comply-soc2/procedures/patch.md": complySoc2ProceduresPatchMd, "comply-soc2/procedures/patch.md": complySoc2ProceduresPatchMd,
"comply-soc2/procedures/workstation.md": complySoc2ProceduresWorkstationMd, "comply-soc2/procedures/workstation.md": complySoc2ProceduresWorkstationMd,
"comply-soc2/standards/README.md": complySoc2StandardsReadmeMd, "comply-soc2/standards/.gitkeep": complySoc2StandardsGitkeep,
"comply-soc2/standards/TSC-2017.yml": complySoc2StandardsTsc2017Yml,
"comply-soc2/templates/default.latex": complySoc2TemplatesDefaultLatex, "comply-soc2/templates/default.latex": complySoc2TemplatesDefaultLatex,
"comply-soc2/templates/index.ace": complySoc2TemplatesIndexAce, "comply-soc2/templates/index.ace": complySoc2TemplatesIndexAce,
} }
@ -1493,8 +1471,7 @@ var _bintree = &bintree{nil, map[string]*bintree{
"workstation.md": &bintree{complySoc2ProceduresWorkstationMd, map[string]*bintree{}}, "workstation.md": &bintree{complySoc2ProceduresWorkstationMd, map[string]*bintree{}},
}}, }},
"standards": &bintree{nil, map[string]*bintree{ "standards": &bintree{nil, map[string]*bintree{
"README.md": &bintree{complySoc2StandardsReadmeMd, map[string]*bintree{}}, ".gitkeep": &bintree{complySoc2StandardsGitkeep, map[string]*bintree{}},
"TSC-2017.yml": &bintree{complySoc2StandardsTsc2017Yml, map[string]*bintree{}},
}}, }},
"templates": &bintree{nil, map[string]*bintree{ "templates": &bintree{nil, map[string]*bintree{
"default.latex": &bintree{complySoc2TemplatesDefaultLatex, map[string]*bintree{}}, "default.latex": &bintree{complySoc2TemplatesDefaultLatex, map[string]*bintree{}},

View File

@ -76,17 +76,17 @@ html lang=en
.columns.is-vcentered .columns.is-vcentered
.column.is-one-third .column.is-one-third
div div
p.subtitle.is-3.has-text-centered Control Tracking p.subtitle.is-3.has-text-centered CriterionTracking
.column.has-text-centered .column.has-text-centered
div div
p.heading Satisfied Controls p.heading Satisfied Criteria
p.title p.title
{{.Stats.ControlsSatisfied}} {{.Stats.CriteriaSatisfied}}
.column.has-text-centered .column.has-text-centered
div div
p.heading Total Controls p.heading Total Controls
p.title p.title
{{.Stats.ControlsTotal}} {{.Stats.CriteriaTotal}}
.columns.is-vcentered .columns.is-vcentered
.column.is-one-third .column.is-one-third
div div
@ -196,14 +196,14 @@ html lang=en
table.table.is-size-4.is-fullwidth table.table.is-size-4.is-fullwidth
thead thead
tr tr
th Control Key th CriterionKey
th Name th Name
th Satisfied? th Satisfied?
th Satisfied By th Satisfied By
tbody tbody
{{range .Controls }} {{range .Criteria}}
tr tr
td {{.ControlKey}} td {{.criteriaKey}}
td td
strong {{.Name}} strong {{.Name}}
.subtitle {{.Description}} .subtitle {{.Description}}

View File

@ -1,4 +1,4 @@
name: Control Environment Narrative name: CriterionEnvironment Narrative
acronym: CEN acronym: CEN
satisfies: satisfies:
TSC: TSC:
@ -15,7 +15,7 @@ majorRevisions:
comment: Initial document comment: Initial document
--- ---
# Control Environment Narrative # CriterionEnvironment Narrative
The following provides a description of the control structure of {{.Name}}. The following provides a description of the control structure of {{.Name}}.
@ -34,7 +34,7 @@ The intent of this description is to enumerate the logical, policy, and procedur
{{.Name}} employs several policy controls to protect confidential data and ensure normal operation of its core product. These policies include, but are not limited to: {{.Name}} employs several policy controls to protect confidential data and ensure normal operation of its core product. These policies include, but are not limited to:
- Access Control Policy - Access CriterionPolicy
- Encryption Policy - Encryption Policy
- Office Security Policy - Office Security Policy
- Password Policy - Password Policy

View File

@ -76,17 +76,17 @@ html lang=en
.columns.is-vcentered .columns.is-vcentered
.column.is-one-third .column.is-one-third
div div
p.subtitle.is-3.has-text-centered Control Tracking p.subtitle.is-3.has-text-centered CriterionTracking
.column.has-text-centered .column.has-text-centered
div div
p.heading Satisfied Controls p.heading Satisfied Criteria
p.title p.title
{{.Stats.ControlsSatisfied}} {{.Stats.CriteriaSatisfied}}
.column.has-text-centered .column.has-text-centered
div div
p.heading Total Controls p.heading Total Controls
p.title p.title
{{.Stats.ControlsTotal}} {{.Stats.CriteriaTotal}}
.columns.is-vcentered .columns.is-vcentered
.column.is-one-third .column.is-one-third
div div
@ -196,14 +196,14 @@ html lang=en
table.table.is-size-4.is-fullwidth table.table.is-size-4.is-fullwidth
thead thead
tr tr
th Control Key th CriterionKey
th Name th Name
th Satisfied? th Satisfied?
th Satisfied By th Satisfied By
tbody tbody
{{range .Controls }} {{range .Criteria}}
tr tr
td {{.ControlKey}} td {{.criteriaKey}}
td td
strong {{.Name}} strong {{.Name}}
.subtitle {{.Description}} .subtitle {{.Description}}