Advertisement
Guest User

Untitled

a guest
Jul 24th, 2018
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. g.get("statement/1").put({
  2. restated: "I don't see any reason why it wouldn't be russia.",
  3. original: "I don't see any reason why it would be russia."
  4. });
  5.  
  6. g.get("highlighted/n").put({highlighted: "n"});
  7. g.get("highlighted/t").put({highlighted: "t"});
  8.  
  9. g.get("statement/1").get("highlighted").set(g.get("highlighted/n"));
  10. g.get("statement/1").get("highlighted").set(g.get("highlighted/t"));
  11.  
  12. g.get("statement/2").put({statement: "Sort of a Double Negative"});
  13.  
  14. g.get("key/s").put({key: "s", operand: "sort", position: 1});
  15. g.get("key/d").put({key: "d", operand: "double", position: 2});
  16. g.get("key/n").put({key: "n", operand: "negative", position: 3});
  17.  
  18. g.get("statement/2").get("keys").set(g.get("key/s"));
  19. g.get("statement/2").get("keys").set(g.get("key/d"));
  20. g.get("statement/2").get("keys").set(g.get("key/n"));
  21.  
  22.  
  23. g.get("statement/2").put({statement: "Sort of a Double Negative"});
  24. g.get("key/s").put({highlighted: "s", operand: "sort", position: 1});
  25. g.get("key/d").put({highlighted: "d", operand: "double", position: 2});
  26. g.get("key/n").put({highlighted: "n", operand: "negative", position: 3});
  27.  
  28.  
  29. g.get("statement/1").get("followed by").put(g.get("statement/2"));
  30.  
  31. g.get("transform/sdn").put({"transform": "Sort by twice moving forward or moving negative.", context: "Think Mirror"});
  32.  
  33. g.get("transform/sdn").set(g.get("key/s"));
  34. g.get("transform/sdn").set(g.get("key/d"));
  35. g.get("transform/sdn").set(g.get("key/n"));
  36.  
  37. g.get("sdnkey/s").put({highlighted: "s", position: "3", change: "+2/-1",});
  38. g.get("sdnkey/d").put({highlighted: "d", position: "1", change: "-1"});
  39. g.get("sdnkey/n").put({highlighted: "n", position: "2", change: "-1"});
  40.  
  41. g.get("transform/sdn").set(g.get("sdnkey/s"));
  42. g.get("transform/sdn").set(g.get("sdnkey/d"));
  43. g.get("transform/sdn").set(g.get("sdnkey/n"));
  44.  
  45. g.get("statement/3").put({statement: "Likewise, no Nuclear Tests."});
  46. g.get("statement/3").get("highlighted").set(g.get("highlighted/n"));
  47. g.get("statement/3").get("highlighted").set(g.get("highlighted/t"));
  48.  
  49.  
  50.  
  51. g.get("composed/1").put({label: "NT"});
  52. g.get("composed/1").set(g.get("highlighted/n"));
  53. g.get("composed/1").set(g.get("highlighted/t"));
  54.  
  55. g.get("composed/2").put({label: "DNS"});
  56. g.get("composed/2").set(g.get("sdnkey/d"));
  57. g.get("composed/2").set(g.get("sdnkey/n"));
  58. g.get("composed/2").set(g.get("sdnkey/s"));
  59.  
  60.  
  61.  
  62. g.get("Q+ Drop").put({drop: "Server + NT + DNS + Apache"});
  63. g.get("Q+ Drop").set(g.get("composed/1"));
  64. g.get("Q+ Drop").set(g.get("composed/2"));
  65. g.get("Q+ Drop").set(g.get("Q Drop"));
  66.  
  67. g.get("Q Drop").put({drop: "Server, Think Mirror, Apache"});
  68. g.get("Q Drop").set(g.get("transform/sdn"));
  69. g.get("Q Drop").set(g.get("statement/2"));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement