Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const byId = {
  2.   0: {
  3.     title: "Nombre + Nacionalidad",
  4.     key: ['name', 'nationality']
  5.   },
  6.   1: {
  7.     title: "Nombre + Alias",
  8.     key: ['name', 'alias']
  9.   },
  10.   2: {
  11.     title: "Nombre + Apellido + Alias",
  12.     key: ['name', 'lastname', 'alias']
  13.   },
  14.   3: {
  15.     title: "Alias + Nacionalidad",
  16.     key: ['alias', 'nationality']
  17.   },
  18.   4: {
  19.     title: "Alias + Organización Criminal + Nacionalidad",
  20.     key: ['alias', 'criminal_organization', 'nationality']
  21.   },
  22.   5: {
  23.     title: "Tatuajes + Organización Criminal",
  24.     key: ['tatoos', 'criminal_organization']
  25.   },
  26.   6: {
  27.     title: "Area Delictiva + Alias",
  28.     key: ['area', 'alias']
  29.   },
  30.   7: {
  31.     title: "Area Delictiva + Alias + Organización Criminal",
  32.     key: ['area', 'alias', 'criminal_organization']
  33.   },
  34.   8: {
  35.     title: "Nombre + Alias + Señas Particulares",
  36.     key: ['name', 'alias', 'signs']
  37.   },
  38.   9: {
  39.     title: "Señas Particulares + Tatuajes",
  40.     key: ['signs', 'tatoos']
  41.   },
  42.   10: {
  43.     title: "Arbol Genealogico.Nombre + Parentesco",
  44.     key: ['tree_name', 'fam']
  45.   },
  46.   11: {
  47.     title: "Alias + Telefonos",
  48.     key: ['alias', 'phones']
  49.   },
  50.   12: {
  51.     title: "Nombre + Alias + Telefonos",
  52.     key: ['name', 'alias', 'phones']
  53.   },
  54.   13: {
  55.     title: "Primer Apellido + Segundo Apellido",
  56.     key: ['first_lastname', 'second_lastname']
  57.   },
  58.   14: {
  59.     title: "Nombre + Alias + Fecha de Nacimiento",
  60.     key: ['name', 'alias', 'birth']
  61.   },
  62.   15: {
  63.     title: "Nombre + Primer Apellido + Telefono",
  64.     key: ['name', 'first_lastname', 'phones']
  65.   },
  66.   16: {
  67.     title: "Nombre + Primer Apellido + Fecha de Nacimiento",
  68.     key: ['name', 'first_lastname', 'birth']
  69.   },
  70.   17: {
  71.     title: "Primer Nombre + Segundo Nombre",
  72.     key: ['first_name', 'second_name']
  73.   },
  74.   18: {
  75.     title: "Nombre + Apellido",
  76.     key: ['name', 'lastname']
  77.   },
  78.   19: {
  79.     title: "Alias + Tatuajes",
  80.     key: ['alias', 'tatoos']
  81.   },
  82.   20: {
  83.     title: "Primer Nombre + Primer Apellido",
  84.     key: ['first_name', 'first_lastname']
  85.   },
  86.   21: {
  87.     title: "Primer Nombre + Segundo Apellido",
  88.     key: ['first_name', 'second_lastname']
  89.   },
  90.   22: {
  91.     title: "Segundo Nombre + Primer Apellido",
  92.     key: ['second_name', 'first_lastname']
  93.   },
  94.   23: {
  95.     title: "Segundo Nombre + Segundo Apellido",
  96.     key: ['second_name', 'second_lastname']
  97.   },
  98.   24: {
  99.     title: "Alias + Direccion",
  100.     key: ['alias', 'address']
  101.   },
  102.   25: {
  103.     title: "Tatuajes + Ubicacion",
  104.     key: ['tatoos', 'location']
  105.   }
  106. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement