You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

2724 lines
100 KiB

  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google/cloud/language/v1beta1/language_service.proto
  3. package language // import "google.golang.org/genproto/googleapis/cloud/language/v1beta1"
  4. import proto "github.com/golang/protobuf/proto"
  5. import fmt "fmt"
  6. import math "math"
  7. import _ "google.golang.org/genproto/googleapis/api/annotations"
  8. import (
  9. context "golang.org/x/net/context"
  10. grpc "google.golang.org/grpc"
  11. )
  12. // Reference imports to suppress errors if they are not otherwise used.
  13. var _ = proto.Marshal
  14. var _ = fmt.Errorf
  15. var _ = math.Inf
  16. // This is a compile-time assertion to ensure that this generated file
  17. // is compatible with the proto package it is being compiled against.
  18. // A compilation error at this line likely means your copy of the
  19. // proto package needs to be updated.
  20. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  21. // Represents the text encoding that the caller uses to process the output.
  22. // Providing an `EncodingType` is recommended because the API provides the
  23. // beginning offsets for various outputs, such as tokens and mentions, and
  24. // languages that natively use different text encodings may access offsets
  25. // differently.
  26. type EncodingType int32
  27. const (
  28. // If `EncodingType` is not specified, encoding-dependent information (such as
  29. // `begin_offset`) will be set at `-1`.
  30. EncodingType_NONE EncodingType = 0
  31. // Encoding-dependent information (such as `begin_offset`) is calculated based
  32. // on the UTF-8 encoding of the input. C++ and Go are examples of languages
  33. // that use this encoding natively.
  34. EncodingType_UTF8 EncodingType = 1
  35. // Encoding-dependent information (such as `begin_offset`) is calculated based
  36. // on the UTF-16 encoding of the input. Java and Javascript are examples of
  37. // languages that use this encoding natively.
  38. EncodingType_UTF16 EncodingType = 2
  39. // Encoding-dependent information (such as `begin_offset`) is calculated based
  40. // on the UTF-32 encoding of the input. Python is an example of a language
  41. // that uses this encoding natively.
  42. EncodingType_UTF32 EncodingType = 3
  43. )
  44. var EncodingType_name = map[int32]string{
  45. 0: "NONE",
  46. 1: "UTF8",
  47. 2: "UTF16",
  48. 3: "UTF32",
  49. }
  50. var EncodingType_value = map[string]int32{
  51. "NONE": 0,
  52. "UTF8": 1,
  53. "UTF16": 2,
  54. "UTF32": 3,
  55. }
  56. func (x EncodingType) String() string {
  57. return proto.EnumName(EncodingType_name, int32(x))
  58. }
  59. func (EncodingType) EnumDescriptor() ([]byte, []int) {
  60. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{0}
  61. }
  62. // The document types enum.
  63. type Document_Type int32
  64. const (
  65. // The content type is not specified.
  66. Document_TYPE_UNSPECIFIED Document_Type = 0
  67. // Plain text
  68. Document_PLAIN_TEXT Document_Type = 1
  69. // HTML
  70. Document_HTML Document_Type = 2
  71. )
  72. var Document_Type_name = map[int32]string{
  73. 0: "TYPE_UNSPECIFIED",
  74. 1: "PLAIN_TEXT",
  75. 2: "HTML",
  76. }
  77. var Document_Type_value = map[string]int32{
  78. "TYPE_UNSPECIFIED": 0,
  79. "PLAIN_TEXT": 1,
  80. "HTML": 2,
  81. }
  82. func (x Document_Type) String() string {
  83. return proto.EnumName(Document_Type_name, int32(x))
  84. }
  85. func (Document_Type) EnumDescriptor() ([]byte, []int) {
  86. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{0, 0}
  87. }
  88. // The type of the entity.
  89. type Entity_Type int32
  90. const (
  91. // Unknown
  92. Entity_UNKNOWN Entity_Type = 0
  93. // Person
  94. Entity_PERSON Entity_Type = 1
  95. // Location
  96. Entity_LOCATION Entity_Type = 2
  97. // Organization
  98. Entity_ORGANIZATION Entity_Type = 3
  99. // Event
  100. Entity_EVENT Entity_Type = 4
  101. // Work of art
  102. Entity_WORK_OF_ART Entity_Type = 5
  103. // Consumer goods
  104. Entity_CONSUMER_GOOD Entity_Type = 6
  105. // Other types
  106. Entity_OTHER Entity_Type = 7
  107. )
  108. var Entity_Type_name = map[int32]string{
  109. 0: "UNKNOWN",
  110. 1: "PERSON",
  111. 2: "LOCATION",
  112. 3: "ORGANIZATION",
  113. 4: "EVENT",
  114. 5: "WORK_OF_ART",
  115. 6: "CONSUMER_GOOD",
  116. 7: "OTHER",
  117. }
  118. var Entity_Type_value = map[string]int32{
  119. "UNKNOWN": 0,
  120. "PERSON": 1,
  121. "LOCATION": 2,
  122. "ORGANIZATION": 3,
  123. "EVENT": 4,
  124. "WORK_OF_ART": 5,
  125. "CONSUMER_GOOD": 6,
  126. "OTHER": 7,
  127. }
  128. func (x Entity_Type) String() string {
  129. return proto.EnumName(Entity_Type_name, int32(x))
  130. }
  131. func (Entity_Type) EnumDescriptor() ([]byte, []int) {
  132. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{2, 0}
  133. }
  134. // The part of speech tags enum.
  135. type PartOfSpeech_Tag int32
  136. const (
  137. // Unknown
  138. PartOfSpeech_UNKNOWN PartOfSpeech_Tag = 0
  139. // Adjective
  140. PartOfSpeech_ADJ PartOfSpeech_Tag = 1
  141. // Adposition (preposition and postposition)
  142. PartOfSpeech_ADP PartOfSpeech_Tag = 2
  143. // Adverb
  144. PartOfSpeech_ADV PartOfSpeech_Tag = 3
  145. // Conjunction
  146. PartOfSpeech_CONJ PartOfSpeech_Tag = 4
  147. // Determiner
  148. PartOfSpeech_DET PartOfSpeech_Tag = 5
  149. // Noun (common and proper)
  150. PartOfSpeech_NOUN PartOfSpeech_Tag = 6
  151. // Cardinal number
  152. PartOfSpeech_NUM PartOfSpeech_Tag = 7
  153. // Pronoun
  154. PartOfSpeech_PRON PartOfSpeech_Tag = 8
  155. // Particle or other function word
  156. PartOfSpeech_PRT PartOfSpeech_Tag = 9
  157. // Punctuation
  158. PartOfSpeech_PUNCT PartOfSpeech_Tag = 10
  159. // Verb (all tenses and modes)
  160. PartOfSpeech_VERB PartOfSpeech_Tag = 11
  161. // Other: foreign words, typos, abbreviations
  162. PartOfSpeech_X PartOfSpeech_Tag = 12
  163. // Affix
  164. PartOfSpeech_AFFIX PartOfSpeech_Tag = 13
  165. )
  166. var PartOfSpeech_Tag_name = map[int32]string{
  167. 0: "UNKNOWN",
  168. 1: "ADJ",
  169. 2: "ADP",
  170. 3: "ADV",
  171. 4: "CONJ",
  172. 5: "DET",
  173. 6: "NOUN",
  174. 7: "NUM",
  175. 8: "PRON",
  176. 9: "PRT",
  177. 10: "PUNCT",
  178. 11: "VERB",
  179. 12: "X",
  180. 13: "AFFIX",
  181. }
  182. var PartOfSpeech_Tag_value = map[string]int32{
  183. "UNKNOWN": 0,
  184. "ADJ": 1,
  185. "ADP": 2,
  186. "ADV": 3,
  187. "CONJ": 4,
  188. "DET": 5,
  189. "NOUN": 6,
  190. "NUM": 7,
  191. "PRON": 8,
  192. "PRT": 9,
  193. "PUNCT": 10,
  194. "VERB": 11,
  195. "X": 12,
  196. "AFFIX": 13,
  197. }
  198. func (x PartOfSpeech_Tag) String() string {
  199. return proto.EnumName(PartOfSpeech_Tag_name, int32(x))
  200. }
  201. func (PartOfSpeech_Tag) EnumDescriptor() ([]byte, []int) {
  202. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{5, 0}
  203. }
  204. // The characteristic of a verb that expresses time flow during an event.
  205. type PartOfSpeech_Aspect int32
  206. const (
  207. // Aspect is not applicable in the analyzed language or is not predicted.
  208. PartOfSpeech_ASPECT_UNKNOWN PartOfSpeech_Aspect = 0
  209. // Perfective
  210. PartOfSpeech_PERFECTIVE PartOfSpeech_Aspect = 1
  211. // Imperfective
  212. PartOfSpeech_IMPERFECTIVE PartOfSpeech_Aspect = 2
  213. // Progressive
  214. PartOfSpeech_PROGRESSIVE PartOfSpeech_Aspect = 3
  215. )
  216. var PartOfSpeech_Aspect_name = map[int32]string{
  217. 0: "ASPECT_UNKNOWN",
  218. 1: "PERFECTIVE",
  219. 2: "IMPERFECTIVE",
  220. 3: "PROGRESSIVE",
  221. }
  222. var PartOfSpeech_Aspect_value = map[string]int32{
  223. "ASPECT_UNKNOWN": 0,
  224. "PERFECTIVE": 1,
  225. "IMPERFECTIVE": 2,
  226. "PROGRESSIVE": 3,
  227. }
  228. func (x PartOfSpeech_Aspect) String() string {
  229. return proto.EnumName(PartOfSpeech_Aspect_name, int32(x))
  230. }
  231. func (PartOfSpeech_Aspect) EnumDescriptor() ([]byte, []int) {
  232. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{5, 1}
  233. }
  234. // The grammatical function performed by a noun or pronoun in a phrase,
  235. // clause, or sentence. In some languages, other parts of speech, such as
  236. // adjective and determiner, take case inflection in agreement with the noun.
  237. type PartOfSpeech_Case int32
  238. const (
  239. // Case is not applicable in the analyzed language or is not predicted.
  240. PartOfSpeech_CASE_UNKNOWN PartOfSpeech_Case = 0
  241. // Accusative
  242. PartOfSpeech_ACCUSATIVE PartOfSpeech_Case = 1
  243. // Adverbial
  244. PartOfSpeech_ADVERBIAL PartOfSpeech_Case = 2
  245. // Complementive
  246. PartOfSpeech_COMPLEMENTIVE PartOfSpeech_Case = 3
  247. // Dative
  248. PartOfSpeech_DATIVE PartOfSpeech_Case = 4
  249. // Genitive
  250. PartOfSpeech_GENITIVE PartOfSpeech_Case = 5
  251. // Instrumental
  252. PartOfSpeech_INSTRUMENTAL PartOfSpeech_Case = 6
  253. // Locative
  254. PartOfSpeech_LOCATIVE PartOfSpeech_Case = 7
  255. // Nominative
  256. PartOfSpeech_NOMINATIVE PartOfSpeech_Case = 8
  257. // Oblique
  258. PartOfSpeech_OBLIQUE PartOfSpeech_Case = 9
  259. // Partitive
  260. PartOfSpeech_PARTITIVE PartOfSpeech_Case = 10
  261. // Prepositional
  262. PartOfSpeech_PREPOSITIONAL PartOfSpeech_Case = 11
  263. // Reflexive
  264. PartOfSpeech_REFLEXIVE_CASE PartOfSpeech_Case = 12
  265. // Relative
  266. PartOfSpeech_RELATIVE_CASE PartOfSpeech_Case = 13
  267. // Vocative
  268. PartOfSpeech_VOCATIVE PartOfSpeech_Case = 14
  269. )
  270. var PartOfSpeech_Case_name = map[int32]string{
  271. 0: "CASE_UNKNOWN",
  272. 1: "ACCUSATIVE",
  273. 2: "ADVERBIAL",
  274. 3: "COMPLEMENTIVE",
  275. 4: "DATIVE",
  276. 5: "GENITIVE",
  277. 6: "INSTRUMENTAL",
  278. 7: "LOCATIVE",
  279. 8: "NOMINATIVE",
  280. 9: "OBLIQUE",
  281. 10: "PARTITIVE",
  282. 11: "PREPOSITIONAL",
  283. 12: "REFLEXIVE_CASE",
  284. 13: "RELATIVE_CASE",
  285. 14: "VOCATIVE",
  286. }
  287. var PartOfSpeech_Case_value = map[string]int32{
  288. "CASE_UNKNOWN": 0,
  289. "ACCUSATIVE": 1,
  290. "ADVERBIAL": 2,
  291. "COMPLEMENTIVE": 3,
  292. "DATIVE": 4,
  293. "GENITIVE": 5,
  294. "INSTRUMENTAL": 6,
  295. "LOCATIVE": 7,
  296. "NOMINATIVE": 8,
  297. "OBLIQUE": 9,
  298. "PARTITIVE": 10,
  299. "PREPOSITIONAL": 11,
  300. "REFLEXIVE_CASE": 12,
  301. "RELATIVE_CASE": 13,
  302. "VOCATIVE": 14,
  303. }
  304. func (x PartOfSpeech_Case) String() string {
  305. return proto.EnumName(PartOfSpeech_Case_name, int32(x))
  306. }
  307. func (PartOfSpeech_Case) EnumDescriptor() ([]byte, []int) {
  308. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{5, 2}
  309. }
  310. // Depending on the language, Form can be categorizing different forms of
  311. // verbs, adjectives, adverbs, etc. For example, categorizing inflected
  312. // endings of verbs and adjectives or distinguishing between short and long
  313. // forms of adjectives and participles
  314. type PartOfSpeech_Form int32
  315. const (
  316. // Form is not applicable in the analyzed language or is not predicted.
  317. PartOfSpeech_FORM_UNKNOWN PartOfSpeech_Form = 0
  318. // Adnomial
  319. PartOfSpeech_ADNOMIAL PartOfSpeech_Form = 1
  320. // Auxiliary
  321. PartOfSpeech_AUXILIARY PartOfSpeech_Form = 2
  322. // Complementizer
  323. PartOfSpeech_COMPLEMENTIZER PartOfSpeech_Form = 3
  324. // Final ending
  325. PartOfSpeech_FINAL_ENDING PartOfSpeech_Form = 4
  326. // Gerund
  327. PartOfSpeech_GERUND PartOfSpeech_Form = 5
  328. // Realis
  329. PartOfSpeech_REALIS PartOfSpeech_Form = 6
  330. // Irrealis
  331. PartOfSpeech_IRREALIS PartOfSpeech_Form = 7
  332. // Short form
  333. PartOfSpeech_SHORT PartOfSpeech_Form = 8
  334. // Long form
  335. PartOfSpeech_LONG PartOfSpeech_Form = 9
  336. // Order form
  337. PartOfSpeech_ORDER PartOfSpeech_Form = 10
  338. // Specific form
  339. PartOfSpeech_SPECIFIC PartOfSpeech_Form = 11
  340. )
  341. var PartOfSpeech_Form_name = map[int32]string{
  342. 0: "FORM_UNKNOWN",
  343. 1: "ADNOMIAL",
  344. 2: "AUXILIARY",
  345. 3: "COMPLEMENTIZER",
  346. 4: "FINAL_ENDING",
  347. 5: "GERUND",
  348. 6: "REALIS",
  349. 7: "IRREALIS",
  350. 8: "SHORT",
  351. 9: "LONG",
  352. 10: "ORDER",
  353. 11: "SPECIFIC",
  354. }
  355. var PartOfSpeech_Form_value = map[string]int32{
  356. "FORM_UNKNOWN": 0,
  357. "ADNOMIAL": 1,
  358. "AUXILIARY": 2,
  359. "COMPLEMENTIZER": 3,
  360. "FINAL_ENDING": 4,
  361. "GERUND": 5,
  362. "REALIS": 6,
  363. "IRREALIS": 7,
  364. "SHORT": 8,
  365. "LONG": 9,
  366. "ORDER": 10,
  367. "SPECIFIC": 11,
  368. }
  369. func (x PartOfSpeech_Form) String() string {
  370. return proto.EnumName(PartOfSpeech_Form_name, int32(x))
  371. }
  372. func (PartOfSpeech_Form) EnumDescriptor() ([]byte, []int) {
  373. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{5, 3}
  374. }
  375. // Gender classes of nouns reflected in the behaviour of associated words.
  376. type PartOfSpeech_Gender int32
  377. const (
  378. // Gender is not applicable in the analyzed language or is not predicted.
  379. PartOfSpeech_GENDER_UNKNOWN PartOfSpeech_Gender = 0
  380. // Feminine
  381. PartOfSpeech_FEMININE PartOfSpeech_Gender = 1
  382. // Masculine
  383. PartOfSpeech_MASCULINE PartOfSpeech_Gender = 2
  384. // Neuter
  385. PartOfSpeech_NEUTER PartOfSpeech_Gender = 3
  386. )
  387. var PartOfSpeech_Gender_name = map[int32]string{
  388. 0: "GENDER_UNKNOWN",
  389. 1: "FEMININE",
  390. 2: "MASCULINE",
  391. 3: "NEUTER",
  392. }
  393. var PartOfSpeech_Gender_value = map[string]int32{
  394. "GENDER_UNKNOWN": 0,
  395. "FEMININE": 1,
  396. "MASCULINE": 2,
  397. "NEUTER": 3,
  398. }
  399. func (x PartOfSpeech_Gender) String() string {
  400. return proto.EnumName(PartOfSpeech_Gender_name, int32(x))
  401. }
  402. func (PartOfSpeech_Gender) EnumDescriptor() ([]byte, []int) {
  403. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{5, 4}
  404. }
  405. // The grammatical feature of verbs, used for showing modality and attitude.
  406. type PartOfSpeech_Mood int32
  407. const (
  408. // Mood is not applicable in the analyzed language or is not predicted.
  409. PartOfSpeech_MOOD_UNKNOWN PartOfSpeech_Mood = 0
  410. // Conditional
  411. PartOfSpeech_CONDITIONAL_MOOD PartOfSpeech_Mood = 1
  412. // Imperative
  413. PartOfSpeech_IMPERATIVE PartOfSpeech_Mood = 2
  414. // Indicative
  415. PartOfSpeech_INDICATIVE PartOfSpeech_Mood = 3
  416. // Interrogative
  417. PartOfSpeech_INTERROGATIVE PartOfSpeech_Mood = 4
  418. // Jussive
  419. PartOfSpeech_JUSSIVE PartOfSpeech_Mood = 5
  420. // Subjunctive
  421. PartOfSpeech_SUBJUNCTIVE PartOfSpeech_Mood = 6
  422. )
  423. var PartOfSpeech_Mood_name = map[int32]string{
  424. 0: "MOOD_UNKNOWN",
  425. 1: "CONDITIONAL_MOOD",
  426. 2: "IMPERATIVE",
  427. 3: "INDICATIVE",
  428. 4: "INTERROGATIVE",
  429. 5: "JUSSIVE",
  430. 6: "SUBJUNCTIVE",
  431. }
  432. var PartOfSpeech_Mood_value = map[string]int32{
  433. "MOOD_UNKNOWN": 0,
  434. "CONDITIONAL_MOOD": 1,
  435. "IMPERATIVE": 2,
  436. "INDICATIVE": 3,
  437. "INTERROGATIVE": 4,
  438. "JUSSIVE": 5,
  439. "SUBJUNCTIVE": 6,
  440. }
  441. func (x PartOfSpeech_Mood) String() string {
  442. return proto.EnumName(PartOfSpeech_Mood_name, int32(x))
  443. }
  444. func (PartOfSpeech_Mood) EnumDescriptor() ([]byte, []int) {
  445. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{5, 5}
  446. }
  447. // Count distinctions.
  448. type PartOfSpeech_Number int32
  449. const (
  450. // Number is not applicable in the analyzed language or is not predicted.
  451. PartOfSpeech_NUMBER_UNKNOWN PartOfSpeech_Number = 0
  452. // Singular
  453. PartOfSpeech_SINGULAR PartOfSpeech_Number = 1
  454. // Plural
  455. PartOfSpeech_PLURAL PartOfSpeech_Number = 2
  456. // Dual
  457. PartOfSpeech_DUAL PartOfSpeech_Number = 3
  458. )
  459. var PartOfSpeech_Number_name = map[int32]string{
  460. 0: "NUMBER_UNKNOWN",
  461. 1: "SINGULAR",
  462. 2: "PLURAL",
  463. 3: "DUAL",
  464. }
  465. var PartOfSpeech_Number_value = map[string]int32{
  466. "NUMBER_UNKNOWN": 0,
  467. "SINGULAR": 1,
  468. "PLURAL": 2,
  469. "DUAL": 3,
  470. }
  471. func (x PartOfSpeech_Number) String() string {
  472. return proto.EnumName(PartOfSpeech_Number_name, int32(x))
  473. }
  474. func (PartOfSpeech_Number) EnumDescriptor() ([]byte, []int) {
  475. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{5, 6}
  476. }
  477. // The distinction between the speaker, second person, third person, etc.
  478. type PartOfSpeech_Person int32
  479. const (
  480. // Person is not applicable in the analyzed language or is not predicted.
  481. PartOfSpeech_PERSON_UNKNOWN PartOfSpeech_Person = 0
  482. // First
  483. PartOfSpeech_FIRST PartOfSpeech_Person = 1
  484. // Second
  485. PartOfSpeech_SECOND PartOfSpeech_Person = 2
  486. // Third
  487. PartOfSpeech_THIRD PartOfSpeech_Person = 3
  488. // Reflexive
  489. PartOfSpeech_REFLEXIVE_PERSON PartOfSpeech_Person = 4
  490. )
  491. var PartOfSpeech_Person_name = map[int32]string{
  492. 0: "PERSON_UNKNOWN",
  493. 1: "FIRST",
  494. 2: "SECOND",
  495. 3: "THIRD",
  496. 4: "REFLEXIVE_PERSON",
  497. }
  498. var PartOfSpeech_Person_value = map[string]int32{
  499. "PERSON_UNKNOWN": 0,
  500. "FIRST": 1,
  501. "SECOND": 2,
  502. "THIRD": 3,
  503. "REFLEXIVE_PERSON": 4,
  504. }
  505. func (x PartOfSpeech_Person) String() string {
  506. return proto.EnumName(PartOfSpeech_Person_name, int32(x))
  507. }
  508. func (PartOfSpeech_Person) EnumDescriptor() ([]byte, []int) {
  509. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{5, 7}
  510. }
  511. // This category shows if the token is part of a proper name.
  512. type PartOfSpeech_Proper int32
  513. const (
  514. // Proper is not applicable in the analyzed language or is not predicted.
  515. PartOfSpeech_PROPER_UNKNOWN PartOfSpeech_Proper = 0
  516. // Proper
  517. PartOfSpeech_PROPER PartOfSpeech_Proper = 1
  518. // Not proper
  519. PartOfSpeech_NOT_PROPER PartOfSpeech_Proper = 2
  520. )
  521. var PartOfSpeech_Proper_name = map[int32]string{
  522. 0: "PROPER_UNKNOWN",
  523. 1: "PROPER",
  524. 2: "NOT_PROPER",
  525. }
  526. var PartOfSpeech_Proper_value = map[string]int32{
  527. "PROPER_UNKNOWN": 0,
  528. "PROPER": 1,
  529. "NOT_PROPER": 2,
  530. }
  531. func (x PartOfSpeech_Proper) String() string {
  532. return proto.EnumName(PartOfSpeech_Proper_name, int32(x))
  533. }
  534. func (PartOfSpeech_Proper) EnumDescriptor() ([]byte, []int) {
  535. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{5, 8}
  536. }
  537. // Reciprocal features of a pronoun.
  538. type PartOfSpeech_Reciprocity int32
  539. const (
  540. // Reciprocity is not applicable in the analyzed language or is not
  541. // predicted.
  542. PartOfSpeech_RECIPROCITY_UNKNOWN PartOfSpeech_Reciprocity = 0
  543. // Reciprocal
  544. PartOfSpeech_RECIPROCAL PartOfSpeech_Reciprocity = 1
  545. // Non-reciprocal
  546. PartOfSpeech_NON_RECIPROCAL PartOfSpeech_Reciprocity = 2
  547. )
  548. var PartOfSpeech_Reciprocity_name = map[int32]string{
  549. 0: "RECIPROCITY_UNKNOWN",
  550. 1: "RECIPROCAL",
  551. 2: "NON_RECIPROCAL",
  552. }
  553. var PartOfSpeech_Reciprocity_value = map[string]int32{
  554. "RECIPROCITY_UNKNOWN": 0,
  555. "RECIPROCAL": 1,
  556. "NON_RECIPROCAL": 2,
  557. }
  558. func (x PartOfSpeech_Reciprocity) String() string {
  559. return proto.EnumName(PartOfSpeech_Reciprocity_name, int32(x))
  560. }
  561. func (PartOfSpeech_Reciprocity) EnumDescriptor() ([]byte, []int) {
  562. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{5, 9}
  563. }
  564. // Time reference.
  565. type PartOfSpeech_Tense int32
  566. const (
  567. // Tense is not applicable in the analyzed language or is not predicted.
  568. PartOfSpeech_TENSE_UNKNOWN PartOfSpeech_Tense = 0
  569. // Conditional
  570. PartOfSpeech_CONDITIONAL_TENSE PartOfSpeech_Tense = 1
  571. // Future
  572. PartOfSpeech_FUTURE PartOfSpeech_Tense = 2
  573. // Past
  574. PartOfSpeech_PAST PartOfSpeech_Tense = 3
  575. // Present
  576. PartOfSpeech_PRESENT PartOfSpeech_Tense = 4
  577. // Imperfect
  578. PartOfSpeech_IMPERFECT PartOfSpeech_Tense = 5
  579. // Pluperfect
  580. PartOfSpeech_PLUPERFECT PartOfSpeech_Tense = 6
  581. )
  582. var PartOfSpeech_Tense_name = map[int32]string{
  583. 0: "TENSE_UNKNOWN",
  584. 1: "CONDITIONAL_TENSE",
  585. 2: "FUTURE",
  586. 3: "PAST",
  587. 4: "PRESENT",
  588. 5: "IMPERFECT",
  589. 6: "PLUPERFECT",
  590. }
  591. var PartOfSpeech_Tense_value = map[string]int32{
  592. "TENSE_UNKNOWN": 0,
  593. "CONDITIONAL_TENSE": 1,
  594. "FUTURE": 2,
  595. "PAST": 3,
  596. "PRESENT": 4,
  597. "IMPERFECT": 5,
  598. "PLUPERFECT": 6,
  599. }
  600. func (x PartOfSpeech_Tense) String() string {
  601. return proto.EnumName(PartOfSpeech_Tense_name, int32(x))
  602. }
  603. func (PartOfSpeech_Tense) EnumDescriptor() ([]byte, []int) {
  604. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{5, 10}
  605. }
  606. // The relationship between the action that a verb expresses and the
  607. // participants identified by its arguments.
  608. type PartOfSpeech_Voice int32
  609. const (
  610. // Voice is not applicable in the analyzed language or is not predicted.
  611. PartOfSpeech_VOICE_UNKNOWN PartOfSpeech_Voice = 0
  612. // Active
  613. PartOfSpeech_ACTIVE PartOfSpeech_Voice = 1
  614. // Causative
  615. PartOfSpeech_CAUSATIVE PartOfSpeech_Voice = 2
  616. // Passive
  617. PartOfSpeech_PASSIVE PartOfSpeech_Voice = 3
  618. )
  619. var PartOfSpeech_Voice_name = map[int32]string{
  620. 0: "VOICE_UNKNOWN",
  621. 1: "ACTIVE",
  622. 2: "CAUSATIVE",
  623. 3: "PASSIVE",
  624. }
  625. var PartOfSpeech_Voice_value = map[string]int32{
  626. "VOICE_UNKNOWN": 0,
  627. "ACTIVE": 1,
  628. "CAUSATIVE": 2,
  629. "PASSIVE": 3,
  630. }
  631. func (x PartOfSpeech_Voice) String() string {
  632. return proto.EnumName(PartOfSpeech_Voice_name, int32(x))
  633. }
  634. func (PartOfSpeech_Voice) EnumDescriptor() ([]byte, []int) {
  635. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{5, 11}
  636. }
  637. // The parse label enum for the token.
  638. type DependencyEdge_Label int32
  639. const (
  640. // Unknown
  641. DependencyEdge_UNKNOWN DependencyEdge_Label = 0
  642. // Abbreviation modifier
  643. DependencyEdge_ABBREV DependencyEdge_Label = 1
  644. // Adjectival complement
  645. DependencyEdge_ACOMP DependencyEdge_Label = 2
  646. // Adverbial clause modifier
  647. DependencyEdge_ADVCL DependencyEdge_Label = 3
  648. // Adverbial modifier
  649. DependencyEdge_ADVMOD DependencyEdge_Label = 4
  650. // Adjectival modifier of an NP
  651. DependencyEdge_AMOD DependencyEdge_Label = 5
  652. // Appositional modifier of an NP
  653. DependencyEdge_APPOS DependencyEdge_Label = 6
  654. // Attribute dependent of a copular verb
  655. DependencyEdge_ATTR DependencyEdge_Label = 7
  656. // Auxiliary (non-main) verb
  657. DependencyEdge_AUX DependencyEdge_Label = 8
  658. // Passive auxiliary
  659. DependencyEdge_AUXPASS DependencyEdge_Label = 9
  660. // Coordinating conjunction
  661. DependencyEdge_CC DependencyEdge_Label = 10
  662. // Clausal complement of a verb or adjective
  663. DependencyEdge_CCOMP DependencyEdge_Label = 11
  664. // Conjunct
  665. DependencyEdge_CONJ DependencyEdge_Label = 12
  666. // Clausal subject
  667. DependencyEdge_CSUBJ DependencyEdge_Label = 13
  668. // Clausal passive subject
  669. DependencyEdge_CSUBJPASS DependencyEdge_Label = 14
  670. // Dependency (unable to determine)
  671. DependencyEdge_DEP DependencyEdge_Label = 15
  672. // Determiner
  673. DependencyEdge_DET DependencyEdge_Label = 16
  674. // Discourse
  675. DependencyEdge_DISCOURSE DependencyEdge_Label = 17
  676. // Direct object
  677. DependencyEdge_DOBJ DependencyEdge_Label = 18
  678. // Expletive
  679. DependencyEdge_EXPL DependencyEdge_Label = 19
  680. // Goes with (part of a word in a text not well edited)
  681. DependencyEdge_GOESWITH DependencyEdge_Label = 20
  682. // Indirect object
  683. DependencyEdge_IOBJ DependencyEdge_Label = 21
  684. // Marker (word introducing a subordinate clause)
  685. DependencyEdge_MARK DependencyEdge_Label = 22
  686. // Multi-word expression
  687. DependencyEdge_MWE DependencyEdge_Label = 23
  688. // Multi-word verbal expression
  689. DependencyEdge_MWV DependencyEdge_Label = 24
  690. // Negation modifier
  691. DependencyEdge_NEG DependencyEdge_Label = 25
  692. // Noun compound modifier
  693. DependencyEdge_NN DependencyEdge_Label = 26
  694. // Noun phrase used as an adverbial modifier
  695. DependencyEdge_NPADVMOD DependencyEdge_Label = 27
  696. // Nominal subject
  697. DependencyEdge_NSUBJ DependencyEdge_Label = 28
  698. // Passive nominal subject
  699. DependencyEdge_NSUBJPASS DependencyEdge_Label = 29
  700. // Numeric modifier of a noun
  701. DependencyEdge_NUM DependencyEdge_Label = 30
  702. // Element of compound number
  703. DependencyEdge_NUMBER DependencyEdge_Label = 31
  704. // Punctuation mark
  705. DependencyEdge_P DependencyEdge_Label = 32
  706. // Parataxis relation
  707. DependencyEdge_PARATAXIS DependencyEdge_Label = 33
  708. // Participial modifier
  709. DependencyEdge_PARTMOD DependencyEdge_Label = 34
  710. // The complement of a preposition is a clause
  711. DependencyEdge_PCOMP DependencyEdge_Label = 35
  712. // Object of a preposition
  713. DependencyEdge_POBJ DependencyEdge_Label = 36
  714. // Possession modifier
  715. DependencyEdge_POSS DependencyEdge_Label = 37
  716. // Postverbal negative particle
  717. DependencyEdge_POSTNEG DependencyEdge_Label = 38
  718. // Predicate complement
  719. DependencyEdge_PRECOMP DependencyEdge_Label = 39
  720. // Preconjunt
  721. DependencyEdge_PRECONJ DependencyEdge_Label = 40
  722. // Predeterminer
  723. DependencyEdge_PREDET DependencyEdge_Label = 41
  724. // Prefix
  725. DependencyEdge_PREF DependencyEdge_Label = 42
  726. // Prepositional modifier
  727. DependencyEdge_PREP DependencyEdge_Label = 43
  728. // The relationship between a verb and verbal morpheme
  729. DependencyEdge_PRONL DependencyEdge_Label = 44
  730. // Particle
  731. DependencyEdge_PRT DependencyEdge_Label = 45
  732. // Associative or possessive marker
  733. DependencyEdge_PS DependencyEdge_Label = 46
  734. // Quantifier phrase modifier
  735. DependencyEdge_QUANTMOD DependencyEdge_Label = 47
  736. // Relative clause modifier
  737. DependencyEdge_RCMOD DependencyEdge_Label = 48
  738. // Complementizer in relative clause
  739. DependencyEdge_RCMODREL DependencyEdge_Label = 49
  740. // Ellipsis without a preceding predicate
  741. DependencyEdge_RDROP DependencyEdge_Label = 50
  742. // Referent
  743. DependencyEdge_REF DependencyEdge_Label = 51
  744. // Remnant
  745. DependencyEdge_REMNANT DependencyEdge_Label = 52
  746. // Reparandum
  747. DependencyEdge_REPARANDUM DependencyEdge_Label = 53
  748. // Root
  749. DependencyEdge_ROOT DependencyEdge_Label = 54
  750. // Suffix specifying a unit of number
  751. DependencyEdge_SNUM DependencyEdge_Label = 55
  752. // Suffix
  753. DependencyEdge_SUFF DependencyEdge_Label = 56
  754. // Temporal modifier
  755. DependencyEdge_TMOD DependencyEdge_Label = 57
  756. // Topic marker
  757. DependencyEdge_TOPIC DependencyEdge_Label = 58
  758. // Clause headed by an infinite form of the verb that modifies a noun
  759. DependencyEdge_VMOD DependencyEdge_Label = 59
  760. // Vocative
  761. DependencyEdge_VOCATIVE DependencyEdge_Label = 60
  762. // Open clausal complement
  763. DependencyEdge_XCOMP DependencyEdge_Label = 61
  764. // Name suffix
  765. DependencyEdge_SUFFIX DependencyEdge_Label = 62
  766. // Name title
  767. DependencyEdge_TITLE DependencyEdge_Label = 63
  768. // Adverbial phrase modifier
  769. DependencyEdge_ADVPHMOD DependencyEdge_Label = 64
  770. // Causative auxiliary
  771. DependencyEdge_AUXCAUS DependencyEdge_Label = 65
  772. // Helper auxiliary
  773. DependencyEdge_AUXVV DependencyEdge_Label = 66
  774. // Rentaishi (Prenominal modifier)
  775. DependencyEdge_DTMOD DependencyEdge_Label = 67
  776. // Foreign words
  777. DependencyEdge_FOREIGN DependencyEdge_Label = 68
  778. // Keyword
  779. DependencyEdge_KW DependencyEdge_Label = 69
  780. // List for chains of comparable items
  781. DependencyEdge_LIST DependencyEdge_Label = 70
  782. // Nominalized clause
  783. DependencyEdge_NOMC DependencyEdge_Label = 71
  784. // Nominalized clausal subject
  785. DependencyEdge_NOMCSUBJ DependencyEdge_Label = 72
  786. // Nominalized clausal passive
  787. DependencyEdge_NOMCSUBJPASS DependencyEdge_Label = 73
  788. // Compound of numeric modifier
  789. DependencyEdge_NUMC DependencyEdge_Label = 74
  790. // Copula
  791. DependencyEdge_COP DependencyEdge_Label = 75
  792. // Dislocated relation (for fronted/topicalized elements)
  793. DependencyEdge_DISLOCATED DependencyEdge_Label = 76
  794. )
  795. var DependencyEdge_Label_name = map[int32]string{
  796. 0: "UNKNOWN",
  797. 1: "ABBREV",
  798. 2: "ACOMP",
  799. 3: "ADVCL",
  800. 4: "ADVMOD",
  801. 5: "AMOD",
  802. 6: "APPOS",
  803. 7: "ATTR",
  804. 8: "AUX",
  805. 9: "AUXPASS",
  806. 10: "CC",
  807. 11: "CCOMP",
  808. 12: "CONJ",
  809. 13: "CSUBJ",
  810. 14: "CSUBJPASS",
  811. 15: "DEP",
  812. 16: "DET",
  813. 17: "DISCOURSE",
  814. 18: "DOBJ",
  815. 19: "EXPL",
  816. 20: "GOESWITH",
  817. 21: "IOBJ",
  818. 22: "MARK",
  819. 23: "MWE",
  820. 24: "MWV",
  821. 25: "NEG",
  822. 26: "NN",
  823. 27: "NPADVMOD",
  824. 28: "NSUBJ",
  825. 29: "NSUBJPASS",
  826. 30: "NUM",
  827. 31: "NUMBER",
  828. 32: "P",
  829. 33: "PARATAXIS",
  830. 34: "PARTMOD",
  831. 35: "PCOMP",
  832. 36: "POBJ",
  833. 37: "POSS",
  834. 38: "POSTNEG",
  835. 39: "PRECOMP",
  836. 40: "PRECONJ",
  837. 41: "PREDET",
  838. 42: "PREF",
  839. 43: "PREP",
  840. 44: "PRONL",
  841. 45: "PRT",
  842. 46: "PS",
  843. 47: "QUANTMOD",
  844. 48: "RCMOD",
  845. 49: "RCMODREL",
  846. 50: "RDROP",
  847. 51: "REF",
  848. 52: "REMNANT",
  849. 53: "REPARANDUM",
  850. 54: "ROOT",
  851. 55: "SNUM",
  852. 56: "SUFF",
  853. 57: "TMOD",
  854. 58: "TOPIC",
  855. 59: "VMOD",
  856. 60: "VOCATIVE",
  857. 61: "XCOMP",
  858. 62: "SUFFIX",
  859. 63: "TITLE",
  860. 64: "ADVPHMOD",
  861. 65: "AUXCAUS",
  862. 66: "AUXVV",
  863. 67: "DTMOD",
  864. 68: "FOREIGN",
  865. 69: "KW",
  866. 70: "LIST",
  867. 71: "NOMC",
  868. 72: "NOMCSUBJ",
  869. 73: "NOMCSUBJPASS",
  870. 74: "NUMC",
  871. 75: "COP",
  872. 76: "DISLOCATED",
  873. }
  874. var DependencyEdge_Label_value = map[string]int32{
  875. "UNKNOWN": 0,
  876. "ABBREV": 1,
  877. "ACOMP": 2,
  878. "ADVCL": 3,
  879. "ADVMOD": 4,
  880. "AMOD": 5,
  881. "APPOS": 6,
  882. "ATTR": 7,
  883. "AUX": 8,
  884. "AUXPASS": 9,
  885. "CC": 10,
  886. "CCOMP": 11,
  887. "CONJ": 12,
  888. "CSUBJ": 13,
  889. "CSUBJPASS": 14,
  890. "DEP": 15,
  891. "DET": 16,
  892. "DISCOURSE": 17,
  893. "DOBJ": 18,
  894. "EXPL": 19,
  895. "GOESWITH": 20,
  896. "IOBJ": 21,
  897. "MARK": 22,
  898. "MWE": 23,
  899. "MWV": 24,
  900. "NEG": 25,
  901. "NN": 26,
  902. "NPADVMOD": 27,
  903. "NSUBJ": 28,
  904. "NSUBJPASS": 29,
  905. "NUM": 30,
  906. "NUMBER": 31,
  907. "P": 32,
  908. "PARATAXIS": 33,
  909. "PARTMOD": 34,
  910. "PCOMP": 35,
  911. "POBJ": 36,
  912. "POSS": 37,
  913. "POSTNEG": 38,
  914. "PRECOMP": 39,
  915. "PRECONJ": 40,
  916. "PREDET": 41,
  917. "PREF": 42,
  918. "PREP": 43,
  919. "PRONL": 44,
  920. "PRT": 45,
  921. "PS": 46,
  922. "QUANTMOD": 47,
  923. "RCMOD": 48,
  924. "RCMODREL": 49,
  925. "RDROP": 50,
  926. "REF": 51,
  927. "REMNANT": 52,
  928. "REPARANDUM": 53,
  929. "ROOT": 54,
  930. "SNUM": 55,
  931. "SUFF": 56,
  932. "TMOD": 57,
  933. "TOPIC": 58,
  934. "VMOD": 59,
  935. "VOCATIVE": 60,
  936. "XCOMP": 61,
  937. "SUFFIX": 62,
  938. "TITLE": 63,
  939. "ADVPHMOD": 64,
  940. "AUXCAUS": 65,
  941. "AUXVV": 66,
  942. "DTMOD": 67,
  943. "FOREIGN": 68,
  944. "KW": 69,
  945. "LIST": 70,
  946. "NOMC": 71,
  947. "NOMCSUBJ": 72,
  948. "NOMCSUBJPASS": 73,
  949. "NUMC": 74,
  950. "COP": 75,
  951. "DISLOCATED": 76,
  952. }
  953. func (x DependencyEdge_Label) String() string {
  954. return proto.EnumName(DependencyEdge_Label_name, int32(x))
  955. }
  956. func (DependencyEdge_Label) EnumDescriptor() ([]byte, []int) {
  957. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{6, 0}
  958. }
  959. // The supported types of mentions.
  960. type EntityMention_Type int32
  961. const (
  962. // Unknown
  963. EntityMention_TYPE_UNKNOWN EntityMention_Type = 0
  964. // Proper name
  965. EntityMention_PROPER EntityMention_Type = 1
  966. // Common noun (or noun compound)
  967. EntityMention_COMMON EntityMention_Type = 2
  968. )
  969. var EntityMention_Type_name = map[int32]string{
  970. 0: "TYPE_UNKNOWN",
  971. 1: "PROPER",
  972. 2: "COMMON",
  973. }
  974. var EntityMention_Type_value = map[string]int32{
  975. "TYPE_UNKNOWN": 0,
  976. "PROPER": 1,
  977. "COMMON": 2,
  978. }
  979. func (x EntityMention_Type) String() string {
  980. return proto.EnumName(EntityMention_Type_name, int32(x))
  981. }
  982. func (EntityMention_Type) EnumDescriptor() ([]byte, []int) {
  983. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{7, 0}
  984. }
  985. // ################################################################ #
  986. //
  987. // Represents the input to API methods.
  988. type Document struct {
  989. // Required. If the type is not set or is `TYPE_UNSPECIFIED`,
  990. // returns an `INVALID_ARGUMENT` error.
  991. Type Document_Type `protobuf:"varint,1,opt,name=type,proto3,enum=google.cloud.language.v1beta1.Document_Type" json:"type,omitempty"`
  992. // The source of the document: a string containing the content or a
  993. // Google Cloud Storage URI.
  994. //
  995. // Types that are valid to be assigned to Source:
  996. // *Document_Content
  997. // *Document_GcsContentUri
  998. Source isDocument_Source `protobuf_oneof:"source"`
  999. // The language of the document (if not specified, the language is
  1000. // automatically detected). Both ISO and BCP-47 language codes are
  1001. // accepted.<br>
  1002. // [Language
  1003. // Support](https://cloud.google.com/natural-language/docs/languages) lists
  1004. // currently supported languages for each API method. If the language (either
  1005. // specified by the caller or automatically detected) is not supported by the
  1006. // called API method, an `INVALID_ARGUMENT` error is returned.
  1007. Language string `protobuf:"bytes,4,opt,name=language,proto3" json:"language,omitempty"`
  1008. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1009. XXX_unrecognized []byte `json:"-"`
  1010. XXX_sizecache int32 `json:"-"`
  1011. }
  1012. func (m *Document) Reset() { *m = Document{} }
  1013. func (m *Document) String() string { return proto.CompactTextString(m) }
  1014. func (*Document) ProtoMessage() {}
  1015. func (*Document) Descriptor() ([]byte, []int) {
  1016. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{0}
  1017. }
  1018. func (m *Document) XXX_Unmarshal(b []byte) error {
  1019. return xxx_messageInfo_Document.Unmarshal(m, b)
  1020. }
  1021. func (m *Document) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1022. return xxx_messageInfo_Document.Marshal(b, m, deterministic)
  1023. }
  1024. func (dst *Document) XXX_Merge(src proto.Message) {
  1025. xxx_messageInfo_Document.Merge(dst, src)
  1026. }
  1027. func (m *Document) XXX_Size() int {
  1028. return xxx_messageInfo_Document.Size(m)
  1029. }
  1030. func (m *Document) XXX_DiscardUnknown() {
  1031. xxx_messageInfo_Document.DiscardUnknown(m)
  1032. }
  1033. var xxx_messageInfo_Document proto.InternalMessageInfo
  1034. func (m *Document) GetType() Document_Type {
  1035. if m != nil {
  1036. return m.Type
  1037. }
  1038. return Document_TYPE_UNSPECIFIED
  1039. }
  1040. type isDocument_Source interface {
  1041. isDocument_Source()
  1042. }
  1043. type Document_Content struct {
  1044. Content string `protobuf:"bytes,2,opt,name=content,proto3,oneof"`
  1045. }
  1046. type Document_GcsContentUri struct {
  1047. GcsContentUri string `protobuf:"bytes,3,opt,name=gcs_content_uri,json=gcsContentUri,proto3,oneof"`
  1048. }
  1049. func (*Document_Content) isDocument_Source() {}
  1050. func (*Document_GcsContentUri) isDocument_Source() {}
  1051. func (m *Document) GetSource() isDocument_Source {
  1052. if m != nil {
  1053. return m.Source
  1054. }
  1055. return nil
  1056. }
  1057. func (m *Document) GetContent() string {
  1058. if x, ok := m.GetSource().(*Document_Content); ok {
  1059. return x.Content
  1060. }
  1061. return ""
  1062. }
  1063. func (m *Document) GetGcsContentUri() string {
  1064. if x, ok := m.GetSource().(*Document_GcsContentUri); ok {
  1065. return x.GcsContentUri
  1066. }
  1067. return ""
  1068. }
  1069. func (m *Document) GetLanguage() string {
  1070. if m != nil {
  1071. return m.Language
  1072. }
  1073. return ""
  1074. }
  1075. // XXX_OneofFuncs is for the internal use of the proto package.
  1076. func (*Document) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
  1077. return _Document_OneofMarshaler, _Document_OneofUnmarshaler, _Document_OneofSizer, []interface{}{
  1078. (*Document_Content)(nil),
  1079. (*Document_GcsContentUri)(nil),
  1080. }
  1081. }
  1082. func _Document_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
  1083. m := msg.(*Document)
  1084. // source
  1085. switch x := m.Source.(type) {
  1086. case *Document_Content:
  1087. b.EncodeVarint(2<<3 | proto.WireBytes)
  1088. b.EncodeStringBytes(x.Content)
  1089. case *Document_GcsContentUri:
  1090. b.EncodeVarint(3<<3 | proto.WireBytes)
  1091. b.EncodeStringBytes(x.GcsContentUri)
  1092. case nil:
  1093. default:
  1094. return fmt.Errorf("Document.Source has unexpected type %T", x)
  1095. }
  1096. return nil
  1097. }
  1098. func _Document_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
  1099. m := msg.(*Document)
  1100. switch tag {
  1101. case 2: // source.content
  1102. if wire != proto.WireBytes {
  1103. return true, proto.ErrInternalBadWireType
  1104. }
  1105. x, err := b.DecodeStringBytes()
  1106. m.Source = &Document_Content{x}
  1107. return true, err
  1108. case 3: // source.gcs_content_uri
  1109. if wire != proto.WireBytes {
  1110. return true, proto.ErrInternalBadWireType
  1111. }
  1112. x, err := b.DecodeStringBytes()
  1113. m.Source = &Document_GcsContentUri{x}
  1114. return true, err
  1115. default:
  1116. return false, nil
  1117. }
  1118. }
  1119. func _Document_OneofSizer(msg proto.Message) (n int) {
  1120. m := msg.(*Document)
  1121. // source
  1122. switch x := m.Source.(type) {
  1123. case *Document_Content:
  1124. n += 1 // tag and wire
  1125. n += proto.SizeVarint(uint64(len(x.Content)))
  1126. n += len(x.Content)
  1127. case *Document_GcsContentUri:
  1128. n += 1 // tag and wire
  1129. n += proto.SizeVarint(uint64(len(x.GcsContentUri)))
  1130. n += len(x.GcsContentUri)
  1131. case nil:
  1132. default:
  1133. panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
  1134. }
  1135. return n
  1136. }
  1137. // Represents a sentence in the input document.
  1138. type Sentence struct {
  1139. // The sentence text.
  1140. Text *TextSpan `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
  1141. // For calls to [AnalyzeSentiment][] or if
  1142. // [AnnotateTextRequest.Features.extract_document_sentiment][google.cloud.language.v1beta1.AnnotateTextRequest.Features.extract_document_sentiment]
  1143. // is set to true, this field will contain the sentiment for the sentence.
  1144. Sentiment *Sentiment `protobuf:"bytes,2,opt,name=sentiment,proto3" json:"sentiment,omitempty"`
  1145. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1146. XXX_unrecognized []byte `json:"-"`
  1147. XXX_sizecache int32 `json:"-"`
  1148. }
  1149. func (m *Sentence) Reset() { *m = Sentence{} }
  1150. func (m *Sentence) String() string { return proto.CompactTextString(m) }
  1151. func (*Sentence) ProtoMessage() {}
  1152. func (*Sentence) Descriptor() ([]byte, []int) {
  1153. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{1}
  1154. }
  1155. func (m *Sentence) XXX_Unmarshal(b []byte) error {
  1156. return xxx_messageInfo_Sentence.Unmarshal(m, b)
  1157. }
  1158. func (m *Sentence) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1159. return xxx_messageInfo_Sentence.Marshal(b, m, deterministic)
  1160. }
  1161. func (dst *Sentence) XXX_Merge(src proto.Message) {
  1162. xxx_messageInfo_Sentence.Merge(dst, src)
  1163. }
  1164. func (m *Sentence) XXX_Size() int {
  1165. return xxx_messageInfo_Sentence.Size(m)
  1166. }
  1167. func (m *Sentence) XXX_DiscardUnknown() {
  1168. xxx_messageInfo_Sentence.DiscardUnknown(m)
  1169. }
  1170. var xxx_messageInfo_Sentence proto.InternalMessageInfo
  1171. func (m *Sentence) GetText() *TextSpan {
  1172. if m != nil {
  1173. return m.Text
  1174. }
  1175. return nil
  1176. }
  1177. func (m *Sentence) GetSentiment() *Sentiment {
  1178. if m != nil {
  1179. return m.Sentiment
  1180. }
  1181. return nil
  1182. }
  1183. // Represents a phrase in the text that is a known entity, such as
  1184. // a person, an organization, or location. The API associates information, such
  1185. // as salience and mentions, with entities.
  1186. type Entity struct {
  1187. // The representative name for the entity.
  1188. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  1189. // The entity type.
  1190. Type Entity_Type `protobuf:"varint,2,opt,name=type,proto3,enum=google.cloud.language.v1beta1.Entity_Type" json:"type,omitempty"`
  1191. // Metadata associated with the entity.
  1192. //
  1193. // Currently, Wikipedia URLs and Knowledge Graph MIDs are provided, if
  1194. // available. The associated keys are "wikipedia_url" and "mid", respectively.
  1195. Metadata map[string]string `protobuf:"bytes,3,rep,name=metadata,proto3" json:"metadata,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  1196. // The salience score associated with the entity in the [0, 1.0] range.
  1197. //
  1198. // The salience score for an entity provides information about the
  1199. // importance or centrality of that entity to the entire document text.
  1200. // Scores closer to 0 are less salient, while scores closer to 1.0 are highly
  1201. // salient.
  1202. Salience float32 `protobuf:"fixed32,4,opt,name=salience,proto3" json:"salience,omitempty"`
  1203. // The mentions of this entity in the input document. The API currently
  1204. // supports proper noun mentions.
  1205. Mentions []*EntityMention `protobuf:"bytes,5,rep,name=mentions,proto3" json:"mentions,omitempty"`
  1206. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1207. XXX_unrecognized []byte `json:"-"`
  1208. XXX_sizecache int32 `json:"-"`
  1209. }
  1210. func (m *Entity) Reset() { *m = Entity{} }
  1211. func (m *Entity) String() string { return proto.CompactTextString(m) }
  1212. func (*Entity) ProtoMessage() {}
  1213. func (*Entity) Descriptor() ([]byte, []int) {
  1214. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{2}
  1215. }
  1216. func (m *Entity) XXX_Unmarshal(b []byte) error {
  1217. return xxx_messageInfo_Entity.Unmarshal(m, b)
  1218. }
  1219. func (m *Entity) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1220. return xxx_messageInfo_Entity.Marshal(b, m, deterministic)
  1221. }
  1222. func (dst *Entity) XXX_Merge(src proto.Message) {
  1223. xxx_messageInfo_Entity.Merge(dst, src)
  1224. }
  1225. func (m *Entity) XXX_Size() int {
  1226. return xxx_messageInfo_Entity.Size(m)
  1227. }
  1228. func (m *Entity) XXX_DiscardUnknown() {
  1229. xxx_messageInfo_Entity.DiscardUnknown(m)
  1230. }
  1231. var xxx_messageInfo_Entity proto.InternalMessageInfo
  1232. func (m *Entity) GetName() string {
  1233. if m != nil {
  1234. return m.Name
  1235. }
  1236. return ""
  1237. }
  1238. func (m *Entity) GetType() Entity_Type {
  1239. if m != nil {
  1240. return m.Type
  1241. }
  1242. return Entity_UNKNOWN
  1243. }
  1244. func (m *Entity) GetMetadata() map[string]string {
  1245. if m != nil {
  1246. return m.Metadata
  1247. }
  1248. return nil
  1249. }
  1250. func (m *Entity) GetSalience() float32 {
  1251. if m != nil {
  1252. return m.Salience
  1253. }
  1254. return 0
  1255. }
  1256. func (m *Entity) GetMentions() []*EntityMention {
  1257. if m != nil {
  1258. return m.Mentions
  1259. }
  1260. return nil
  1261. }
  1262. // Represents the smallest syntactic building block of the text.
  1263. type Token struct {
  1264. // The token text.
  1265. Text *TextSpan `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
  1266. // Parts of speech tag for this token.
  1267. PartOfSpeech *PartOfSpeech `protobuf:"bytes,2,opt,name=part_of_speech,json=partOfSpeech,proto3" json:"part_of_speech,omitempty"`
  1268. // Dependency tree parse for this token.
  1269. DependencyEdge *DependencyEdge `protobuf:"bytes,3,opt,name=dependency_edge,json=dependencyEdge,proto3" json:"dependency_edge,omitempty"`
  1270. // [Lemma](https://en.wikipedia.org/wiki/Lemma_%28morphology%29) of the token.
  1271. Lemma string `protobuf:"bytes,4,opt,name=lemma,proto3" json:"lemma,omitempty"`
  1272. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1273. XXX_unrecognized []byte `json:"-"`
  1274. XXX_sizecache int32 `json:"-"`
  1275. }
  1276. func (m *Token) Reset() { *m = Token{} }
  1277. func (m *Token) String() string { return proto.CompactTextString(m) }
  1278. func (*Token) ProtoMessage() {}
  1279. func (*Token) Descriptor() ([]byte, []int) {
  1280. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{3}
  1281. }
  1282. func (m *Token) XXX_Unmarshal(b []byte) error {
  1283. return xxx_messageInfo_Token.Unmarshal(m, b)
  1284. }
  1285. func (m *Token) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1286. return xxx_messageInfo_Token.Marshal(b, m, deterministic)
  1287. }
  1288. func (dst *Token) XXX_Merge(src proto.Message) {
  1289. xxx_messageInfo_Token.Merge(dst, src)
  1290. }
  1291. func (m *Token) XXX_Size() int {
  1292. return xxx_messageInfo_Token.Size(m)
  1293. }
  1294. func (m *Token) XXX_DiscardUnknown() {
  1295. xxx_messageInfo_Token.DiscardUnknown(m)
  1296. }
  1297. var xxx_messageInfo_Token proto.InternalMessageInfo
  1298. func (m *Token) GetText() *TextSpan {
  1299. if m != nil {
  1300. return m.Text
  1301. }
  1302. return nil
  1303. }
  1304. func (m *Token) GetPartOfSpeech() *PartOfSpeech {
  1305. if m != nil {
  1306. return m.PartOfSpeech
  1307. }
  1308. return nil
  1309. }
  1310. func (m *Token) GetDependencyEdge() *DependencyEdge {
  1311. if m != nil {
  1312. return m.DependencyEdge
  1313. }
  1314. return nil
  1315. }
  1316. func (m *Token) GetLemma() string {
  1317. if m != nil {
  1318. return m.Lemma
  1319. }
  1320. return ""
  1321. }
  1322. // Represents the feeling associated with the entire text or entities in
  1323. // the text.
  1324. type Sentiment struct {
  1325. // DEPRECATED FIELD - This field is being deprecated in
  1326. // favor of score. Please refer to our documentation at
  1327. // https://cloud.google.com/natural-language/docs for more information.
  1328. Polarity float32 `protobuf:"fixed32,1,opt,name=polarity,proto3" json:"polarity,omitempty"`
  1329. // A non-negative number in the [0, +inf) range, which represents
  1330. // the absolute magnitude of sentiment regardless of score (positive or
  1331. // negative).
  1332. Magnitude float32 `protobuf:"fixed32,2,opt,name=magnitude,proto3" json:"magnitude,omitempty"`
  1333. // Sentiment score between -1.0 (negative sentiment) and 1.0
  1334. // (positive sentiment).
  1335. Score float32 `protobuf:"fixed32,3,opt,name=score,proto3" json:"score,omitempty"`
  1336. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1337. XXX_unrecognized []byte `json:"-"`
  1338. XXX_sizecache int32 `json:"-"`
  1339. }
  1340. func (m *Sentiment) Reset() { *m = Sentiment{} }
  1341. func (m *Sentiment) String() string { return proto.CompactTextString(m) }
  1342. func (*Sentiment) ProtoMessage() {}
  1343. func (*Sentiment) Descriptor() ([]byte, []int) {
  1344. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{4}
  1345. }
  1346. func (m *Sentiment) XXX_Unmarshal(b []byte) error {
  1347. return xxx_messageInfo_Sentiment.Unmarshal(m, b)
  1348. }
  1349. func (m *Sentiment) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1350. return xxx_messageInfo_Sentiment.Marshal(b, m, deterministic)
  1351. }
  1352. func (dst *Sentiment) XXX_Merge(src proto.Message) {
  1353. xxx_messageInfo_Sentiment.Merge(dst, src)
  1354. }
  1355. func (m *Sentiment) XXX_Size() int {
  1356. return xxx_messageInfo_Sentiment.Size(m)
  1357. }
  1358. func (m *Sentiment) XXX_DiscardUnknown() {
  1359. xxx_messageInfo_Sentiment.DiscardUnknown(m)
  1360. }
  1361. var xxx_messageInfo_Sentiment proto.InternalMessageInfo
  1362. func (m *Sentiment) GetPolarity() float32 {
  1363. if m != nil {
  1364. return m.Polarity
  1365. }
  1366. return 0
  1367. }
  1368. func (m *Sentiment) GetMagnitude() float32 {
  1369. if m != nil {
  1370. return m.Magnitude
  1371. }
  1372. return 0
  1373. }
  1374. func (m *Sentiment) GetScore() float32 {
  1375. if m != nil {
  1376. return m.Score
  1377. }
  1378. return 0
  1379. }
  1380. // Represents part of speech information for a token.
  1381. type PartOfSpeech struct {
  1382. // The part of speech tag.
  1383. Tag PartOfSpeech_Tag `protobuf:"varint,1,opt,name=tag,proto3,enum=google.cloud.language.v1beta1.PartOfSpeech_Tag" json:"tag,omitempty"`
  1384. // The grammatical aspect.
  1385. Aspect PartOfSpeech_Aspect `protobuf:"varint,2,opt,name=aspect,proto3,enum=google.cloud.language.v1beta1.PartOfSpeech_Aspect" json:"aspect,omitempty"`
  1386. // The grammatical case.
  1387. Case PartOfSpeech_Case `protobuf:"varint,3,opt,name=case,proto3,enum=google.cloud.language.v1beta1.PartOfSpeech_Case" json:"case,omitempty"`
  1388. // The grammatical form.
  1389. Form PartOfSpeech_Form `protobuf:"varint,4,opt,name=form,proto3,enum=google.cloud.language.v1beta1.PartOfSpeech_Form" json:"form,omitempty"`
  1390. // The grammatical gender.
  1391. Gender PartOfSpeech_Gender `protobuf:"varint,5,opt,name=gender,proto3,enum=google.cloud.language.v1beta1.PartOfSpeech_Gender" json:"gender,omitempty"`
  1392. // The grammatical mood.
  1393. Mood PartOfSpeech_Mood `protobuf:"varint,6,opt,name=mood,proto3,enum=google.cloud.language.v1beta1.PartOfSpeech_Mood" json:"mood,omitempty"`
  1394. // The grammatical number.
  1395. Number PartOfSpeech_Number `protobuf:"varint,7,opt,name=number,proto3,enum=google.cloud.language.v1beta1.PartOfSpeech_Number" json:"number,omitempty"`
  1396. // The grammatical person.
  1397. Person PartOfSpeech_Person `protobuf:"varint,8,opt,name=person,proto3,enum=google.cloud.language.v1beta1.PartOfSpeech_Person" json:"person,omitempty"`
  1398. // The grammatical properness.
  1399. Proper PartOfSpeech_Proper `protobuf:"varint,9,opt,name=proper,proto3,enum=google.cloud.language.v1beta1.PartOfSpeech_Proper" json:"proper,omitempty"`
  1400. // The grammatical reciprocity.
  1401. Reciprocity PartOfSpeech_Reciprocity `protobuf:"varint,10,opt,name=reciprocity,proto3,enum=google.cloud.language.v1beta1.PartOfSpeech_Reciprocity" json:"reciprocity,omitempty"`
  1402. // The grammatical tense.
  1403. Tense PartOfSpeech_Tense `protobuf:"varint,11,opt,name=tense,proto3,enum=google.cloud.language.v1beta1.PartOfSpeech_Tense" json:"tense,omitempty"`
  1404. // The grammatical voice.
  1405. Voice PartOfSpeech_Voice `protobuf:"varint,12,opt,name=voice,proto3,enum=google.cloud.language.v1beta1.PartOfSpeech_Voice" json:"voice,omitempty"`
  1406. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1407. XXX_unrecognized []byte `json:"-"`
  1408. XXX_sizecache int32 `json:"-"`
  1409. }
  1410. func (m *PartOfSpeech) Reset() { *m = PartOfSpeech{} }
  1411. func (m *PartOfSpeech) String() string { return proto.CompactTextString(m) }
  1412. func (*PartOfSpeech) ProtoMessage() {}
  1413. func (*PartOfSpeech) Descriptor() ([]byte, []int) {
  1414. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{5}
  1415. }
  1416. func (m *PartOfSpeech) XXX_Unmarshal(b []byte) error {
  1417. return xxx_messageInfo_PartOfSpeech.Unmarshal(m, b)
  1418. }
  1419. func (m *PartOfSpeech) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1420. return xxx_messageInfo_PartOfSpeech.Marshal(b, m, deterministic)
  1421. }
  1422. func (dst *PartOfSpeech) XXX_Merge(src proto.Message) {
  1423. xxx_messageInfo_PartOfSpeech.Merge(dst, src)
  1424. }
  1425. func (m *PartOfSpeech) XXX_Size() int {
  1426. return xxx_messageInfo_PartOfSpeech.Size(m)
  1427. }
  1428. func (m *PartOfSpeech) XXX_DiscardUnknown() {
  1429. xxx_messageInfo_PartOfSpeech.DiscardUnknown(m)
  1430. }
  1431. var xxx_messageInfo_PartOfSpeech proto.InternalMessageInfo
  1432. func (m *PartOfSpeech) GetTag() PartOfSpeech_Tag {
  1433. if m != nil {
  1434. return m.Tag
  1435. }
  1436. return PartOfSpeech_UNKNOWN
  1437. }
  1438. func (m *PartOfSpeech) GetAspect() PartOfSpeech_Aspect {
  1439. if m != nil {
  1440. return m.Aspect
  1441. }
  1442. return PartOfSpeech_ASPECT_UNKNOWN
  1443. }
  1444. func (m *PartOfSpeech) GetCase() PartOfSpeech_Case {
  1445. if m != nil {
  1446. return m.Case
  1447. }
  1448. return PartOfSpeech_CASE_UNKNOWN
  1449. }
  1450. func (m *PartOfSpeech) GetForm() PartOfSpeech_Form {
  1451. if m != nil {
  1452. return m.Form
  1453. }
  1454. return PartOfSpeech_FORM_UNKNOWN
  1455. }
  1456. func (m *PartOfSpeech) GetGender() PartOfSpeech_Gender {
  1457. if m != nil {
  1458. return m.Gender
  1459. }
  1460. return PartOfSpeech_GENDER_UNKNOWN
  1461. }
  1462. func (m *PartOfSpeech) GetMood() PartOfSpeech_Mood {
  1463. if m != nil {
  1464. return m.Mood
  1465. }
  1466. return PartOfSpeech_MOOD_UNKNOWN
  1467. }
  1468. func (m *PartOfSpeech) GetNumber() PartOfSpeech_Number {
  1469. if m != nil {
  1470. return m.Number
  1471. }
  1472. return PartOfSpeech_NUMBER_UNKNOWN
  1473. }
  1474. func (m *PartOfSpeech) GetPerson() PartOfSpeech_Person {
  1475. if m != nil {
  1476. return m.Person
  1477. }
  1478. return PartOfSpeech_PERSON_UNKNOWN
  1479. }
  1480. func (m *PartOfSpeech) GetProper() PartOfSpeech_Proper {
  1481. if m != nil {
  1482. return m.Proper
  1483. }
  1484. return PartOfSpeech_PROPER_UNKNOWN
  1485. }
  1486. func (m *PartOfSpeech) GetReciprocity() PartOfSpeech_Reciprocity {
  1487. if m != nil {
  1488. return m.Reciprocity
  1489. }
  1490. return PartOfSpeech_RECIPROCITY_UNKNOWN
  1491. }
  1492. func (m *PartOfSpeech) GetTense() PartOfSpeech_Tense {
  1493. if m != nil {
  1494. return m.Tense
  1495. }
  1496. return PartOfSpeech_TENSE_UNKNOWN
  1497. }
  1498. func (m *PartOfSpeech) GetVoice() PartOfSpeech_Voice {
  1499. if m != nil {
  1500. return m.Voice
  1501. }
  1502. return PartOfSpeech_VOICE_UNKNOWN
  1503. }
  1504. // Represents dependency parse tree information for a token.
  1505. type DependencyEdge struct {
  1506. // Represents the head of this token in the dependency tree.
  1507. // This is the index of the token which has an arc going to this token.
  1508. // The index is the position of the token in the array of tokens returned
  1509. // by the API method. If this token is a root token, then the
  1510. // `head_token_index` is its own index.
  1511. HeadTokenIndex int32 `protobuf:"varint,1,opt,name=head_token_index,json=headTokenIndex,proto3" json:"head_token_index,omitempty"`
  1512. // The parse label for the token.
  1513. Label DependencyEdge_Label `protobuf:"varint,2,opt,name=label,proto3,enum=google.cloud.language.v1beta1.DependencyEdge_Label" json:"label,omitempty"`
  1514. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1515. XXX_unrecognized []byte `json:"-"`
  1516. XXX_sizecache int32 `json:"-"`
  1517. }
  1518. func (m *DependencyEdge) Reset() { *m = DependencyEdge{} }
  1519. func (m *DependencyEdge) String() string { return proto.CompactTextString(m) }
  1520. func (*DependencyEdge) ProtoMessage() {}
  1521. func (*DependencyEdge) Descriptor() ([]byte, []int) {
  1522. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{6}
  1523. }
  1524. func (m *DependencyEdge) XXX_Unmarshal(b []byte) error {
  1525. return xxx_messageInfo_DependencyEdge.Unmarshal(m, b)
  1526. }
  1527. func (m *DependencyEdge) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1528. return xxx_messageInfo_DependencyEdge.Marshal(b, m, deterministic)
  1529. }
  1530. func (dst *DependencyEdge) XXX_Merge(src proto.Message) {
  1531. xxx_messageInfo_DependencyEdge.Merge(dst, src)
  1532. }
  1533. func (m *DependencyEdge) XXX_Size() int {
  1534. return xxx_messageInfo_DependencyEdge.Size(m)
  1535. }
  1536. func (m *DependencyEdge) XXX_DiscardUnknown() {
  1537. xxx_messageInfo_DependencyEdge.DiscardUnknown(m)
  1538. }
  1539. var xxx_messageInfo_DependencyEdge proto.InternalMessageInfo
  1540. func (m *DependencyEdge) GetHeadTokenIndex() int32 {
  1541. if m != nil {
  1542. return m.HeadTokenIndex
  1543. }
  1544. return 0
  1545. }
  1546. func (m *DependencyEdge) GetLabel() DependencyEdge_Label {
  1547. if m != nil {
  1548. return m.Label
  1549. }
  1550. return DependencyEdge_UNKNOWN
  1551. }
  1552. // Represents a mention for an entity in the text. Currently, proper noun
  1553. // mentions are supported.
  1554. type EntityMention struct {
  1555. // The mention text.
  1556. Text *TextSpan `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"`
  1557. // The type of the entity mention.
  1558. Type EntityMention_Type `protobuf:"varint,2,opt,name=type,proto3,enum=google.cloud.language.v1beta1.EntityMention_Type" json:"type,omitempty"`
  1559. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1560. XXX_unrecognized []byte `json:"-"`
  1561. XXX_sizecache int32 `json:"-"`
  1562. }
  1563. func (m *EntityMention) Reset() { *m = EntityMention{} }
  1564. func (m *EntityMention) String() string { return proto.CompactTextString(m) }
  1565. func (*EntityMention) ProtoMessage() {}
  1566. func (*EntityMention) Descriptor() ([]byte, []int) {
  1567. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{7}
  1568. }
  1569. func (m *EntityMention) XXX_Unmarshal(b []byte) error {
  1570. return xxx_messageInfo_EntityMention.Unmarshal(m, b)
  1571. }
  1572. func (m *EntityMention) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1573. return xxx_messageInfo_EntityMention.Marshal(b, m, deterministic)
  1574. }
  1575. func (dst *EntityMention) XXX_Merge(src proto.Message) {
  1576. xxx_messageInfo_EntityMention.Merge(dst, src)
  1577. }
  1578. func (m *EntityMention) XXX_Size() int {
  1579. return xxx_messageInfo_EntityMention.Size(m)
  1580. }
  1581. func (m *EntityMention) XXX_DiscardUnknown() {
  1582. xxx_messageInfo_EntityMention.DiscardUnknown(m)
  1583. }
  1584. var xxx_messageInfo_EntityMention proto.InternalMessageInfo
  1585. func (m *EntityMention) GetText() *TextSpan {
  1586. if m != nil {
  1587. return m.Text
  1588. }
  1589. return nil
  1590. }
  1591. func (m *EntityMention) GetType() EntityMention_Type {
  1592. if m != nil {
  1593. return m.Type
  1594. }
  1595. return EntityMention_TYPE_UNKNOWN
  1596. }
  1597. // Represents an output piece of text.
  1598. type TextSpan struct {
  1599. // The content of the output text.
  1600. Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"`
  1601. // The API calculates the beginning offset of the content in the original
  1602. // document according to the
  1603. // [EncodingType][google.cloud.language.v1beta1.EncodingType] specified in the
  1604. // API request.
  1605. BeginOffset int32 `protobuf:"varint,2,opt,name=begin_offset,json=beginOffset,proto3" json:"begin_offset,omitempty"`
  1606. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1607. XXX_unrecognized []byte `json:"-"`
  1608. XXX_sizecache int32 `json:"-"`
  1609. }
  1610. func (m *TextSpan) Reset() { *m = TextSpan{} }
  1611. func (m *TextSpan) String() string { return proto.CompactTextString(m) }
  1612. func (*TextSpan) ProtoMessage() {}
  1613. func (*TextSpan) Descriptor() ([]byte, []int) {
  1614. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{8}
  1615. }
  1616. func (m *TextSpan) XXX_Unmarshal(b []byte) error {
  1617. return xxx_messageInfo_TextSpan.Unmarshal(m, b)
  1618. }
  1619. func (m *TextSpan) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1620. return xxx_messageInfo_TextSpan.Marshal(b, m, deterministic)
  1621. }
  1622. func (dst *TextSpan) XXX_Merge(src proto.Message) {
  1623. xxx_messageInfo_TextSpan.Merge(dst, src)
  1624. }
  1625. func (m *TextSpan) XXX_Size() int {
  1626. return xxx_messageInfo_TextSpan.Size(m)
  1627. }
  1628. func (m *TextSpan) XXX_DiscardUnknown() {
  1629. xxx_messageInfo_TextSpan.DiscardUnknown(m)
  1630. }
  1631. var xxx_messageInfo_TextSpan proto.InternalMessageInfo
  1632. func (m *TextSpan) GetContent() string {
  1633. if m != nil {
  1634. return m.Content
  1635. }
  1636. return ""
  1637. }
  1638. func (m *TextSpan) GetBeginOffset() int32 {
  1639. if m != nil {
  1640. return m.BeginOffset
  1641. }
  1642. return 0
  1643. }
  1644. // The sentiment analysis request message.
  1645. type AnalyzeSentimentRequest struct {
  1646. // Input document.
  1647. Document *Document `protobuf:"bytes,1,opt,name=document,proto3" json:"document,omitempty"`
  1648. // The encoding type used by the API to calculate sentence offsets for the
  1649. // sentence sentiment.
  1650. EncodingType EncodingType `protobuf:"varint,2,opt,name=encoding_type,json=encodingType,proto3,enum=google.cloud.language.v1beta1.EncodingType" json:"encoding_type,omitempty"`
  1651. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1652. XXX_unrecognized []byte `json:"-"`
  1653. XXX_sizecache int32 `json:"-"`
  1654. }
  1655. func (m *AnalyzeSentimentRequest) Reset() { *m = AnalyzeSentimentRequest{} }
  1656. func (m *AnalyzeSentimentRequest) String() string { return proto.CompactTextString(m) }
  1657. func (*AnalyzeSentimentRequest) ProtoMessage() {}
  1658. func (*AnalyzeSentimentRequest) Descriptor() ([]byte, []int) {
  1659. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{9}
  1660. }
  1661. func (m *AnalyzeSentimentRequest) XXX_Unmarshal(b []byte) error {
  1662. return xxx_messageInfo_AnalyzeSentimentRequest.Unmarshal(m, b)
  1663. }
  1664. func (m *AnalyzeSentimentRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1665. return xxx_messageInfo_AnalyzeSentimentRequest.Marshal(b, m, deterministic)
  1666. }
  1667. func (dst *AnalyzeSentimentRequest) XXX_Merge(src proto.Message) {
  1668. xxx_messageInfo_AnalyzeSentimentRequest.Merge(dst, src)
  1669. }
  1670. func (m *AnalyzeSentimentRequest) XXX_Size() int {
  1671. return xxx_messageInfo_AnalyzeSentimentRequest.Size(m)
  1672. }
  1673. func (m *AnalyzeSentimentRequest) XXX_DiscardUnknown() {
  1674. xxx_messageInfo_AnalyzeSentimentRequest.DiscardUnknown(m)
  1675. }
  1676. var xxx_messageInfo_AnalyzeSentimentRequest proto.InternalMessageInfo
  1677. func (m *AnalyzeSentimentRequest) GetDocument() *Document {
  1678. if m != nil {
  1679. return m.Document
  1680. }
  1681. return nil
  1682. }
  1683. func (m *AnalyzeSentimentRequest) GetEncodingType() EncodingType {
  1684. if m != nil {
  1685. return m.EncodingType
  1686. }
  1687. return EncodingType_NONE
  1688. }
  1689. // The sentiment analysis response message.
  1690. type AnalyzeSentimentResponse struct {
  1691. // The overall sentiment of the input document.
  1692. DocumentSentiment *Sentiment `protobuf:"bytes,1,opt,name=document_sentiment,json=documentSentiment,proto3" json:"document_sentiment,omitempty"`
  1693. // The language of the text, which will be the same as the language specified
  1694. // in the request or, if not specified, the automatically-detected language.
  1695. // See [Document.language][google.cloud.language.v1beta1.Document.language]
  1696. // field for more details.
  1697. Language string `protobuf:"bytes,2,opt,name=language,proto3" json:"language,omitempty"`
  1698. // The sentiment for all the sentences in the document.
  1699. Sentences []*Sentence `protobuf:"bytes,3,rep,name=sentences,proto3" json:"sentences,omitempty"`
  1700. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1701. XXX_unrecognized []byte `json:"-"`
  1702. XXX_sizecache int32 `json:"-"`
  1703. }
  1704. func (m *AnalyzeSentimentResponse) Reset() { *m = AnalyzeSentimentResponse{} }
  1705. func (m *AnalyzeSentimentResponse) String() string { return proto.CompactTextString(m) }
  1706. func (*AnalyzeSentimentResponse) ProtoMessage() {}
  1707. func (*AnalyzeSentimentResponse) Descriptor() ([]byte, []int) {
  1708. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{10}
  1709. }
  1710. func (m *AnalyzeSentimentResponse) XXX_Unmarshal(b []byte) error {
  1711. return xxx_messageInfo_AnalyzeSentimentResponse.Unmarshal(m, b)
  1712. }
  1713. func (m *AnalyzeSentimentResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1714. return xxx_messageInfo_AnalyzeSentimentResponse.Marshal(b, m, deterministic)
  1715. }
  1716. func (dst *AnalyzeSentimentResponse) XXX_Merge(src proto.Message) {
  1717. xxx_messageInfo_AnalyzeSentimentResponse.Merge(dst, src)
  1718. }
  1719. func (m *AnalyzeSentimentResponse) XXX_Size() int {
  1720. return xxx_messageInfo_AnalyzeSentimentResponse.Size(m)
  1721. }
  1722. func (m *AnalyzeSentimentResponse) XXX_DiscardUnknown() {
  1723. xxx_messageInfo_AnalyzeSentimentResponse.DiscardUnknown(m)
  1724. }
  1725. var xxx_messageInfo_AnalyzeSentimentResponse proto.InternalMessageInfo
  1726. func (m *AnalyzeSentimentResponse) GetDocumentSentiment() *Sentiment {
  1727. if m != nil {
  1728. return m.DocumentSentiment
  1729. }
  1730. return nil
  1731. }
  1732. func (m *AnalyzeSentimentResponse) GetLanguage() string {
  1733. if m != nil {
  1734. return m.Language
  1735. }
  1736. return ""
  1737. }
  1738. func (m *AnalyzeSentimentResponse) GetSentences() []*Sentence {
  1739. if m != nil {
  1740. return m.Sentences
  1741. }
  1742. return nil
  1743. }
  1744. // The entity analysis request message.
  1745. type AnalyzeEntitiesRequest struct {
  1746. // Input document.
  1747. Document *Document `protobuf:"bytes,1,opt,name=document,proto3" json:"document,omitempty"`
  1748. // The encoding type used by the API to calculate offsets.
  1749. EncodingType EncodingType `protobuf:"varint,2,opt,name=encoding_type,json=encodingType,proto3,enum=google.cloud.language.v1beta1.EncodingType" json:"encoding_type,omitempty"`
  1750. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1751. XXX_unrecognized []byte `json:"-"`
  1752. XXX_sizecache int32 `json:"-"`
  1753. }
  1754. func (m *AnalyzeEntitiesRequest) Reset() { *m = AnalyzeEntitiesRequest{} }
  1755. func (m *AnalyzeEntitiesRequest) String() string { return proto.CompactTextString(m) }
  1756. func (*AnalyzeEntitiesRequest) ProtoMessage() {}
  1757. func (*AnalyzeEntitiesRequest) Descriptor() ([]byte, []int) {
  1758. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{11}
  1759. }
  1760. func (m *AnalyzeEntitiesRequest) XXX_Unmarshal(b []byte) error {
  1761. return xxx_messageInfo_AnalyzeEntitiesRequest.Unmarshal(m, b)
  1762. }
  1763. func (m *AnalyzeEntitiesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1764. return xxx_messageInfo_AnalyzeEntitiesRequest.Marshal(b, m, deterministic)
  1765. }
  1766. func (dst *AnalyzeEntitiesRequest) XXX_Merge(src proto.Message) {
  1767. xxx_messageInfo_AnalyzeEntitiesRequest.Merge(dst, src)
  1768. }
  1769. func (m *AnalyzeEntitiesRequest) XXX_Size() int {
  1770. return xxx_messageInfo_AnalyzeEntitiesRequest.Size(m)
  1771. }
  1772. func (m *AnalyzeEntitiesRequest) XXX_DiscardUnknown() {
  1773. xxx_messageInfo_AnalyzeEntitiesRequest.DiscardUnknown(m)
  1774. }
  1775. var xxx_messageInfo_AnalyzeEntitiesRequest proto.InternalMessageInfo
  1776. func (m *AnalyzeEntitiesRequest) GetDocument() *Document {
  1777. if m != nil {
  1778. return m.Document
  1779. }
  1780. return nil
  1781. }
  1782. func (m *AnalyzeEntitiesRequest) GetEncodingType() EncodingType {
  1783. if m != nil {
  1784. return m.EncodingType
  1785. }
  1786. return EncodingType_NONE
  1787. }
  1788. // The entity analysis response message.
  1789. type AnalyzeEntitiesResponse struct {
  1790. // The recognized entities in the input document.
  1791. Entities []*Entity `protobuf:"bytes,1,rep,name=entities,proto3" json:"entities,omitempty"`
  1792. // The language of the text, which will be the same as the language specified
  1793. // in the request or, if not specified, the automatically-detected language.
  1794. // See [Document.language][google.cloud.language.v1beta1.Document.language]
  1795. // field for more details.
  1796. Language string `protobuf:"bytes,2,opt,name=language,proto3" json:"language,omitempty"`
  1797. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1798. XXX_unrecognized []byte `json:"-"`
  1799. XXX_sizecache int32 `json:"-"`
  1800. }
  1801. func (m *AnalyzeEntitiesResponse) Reset() { *m = AnalyzeEntitiesResponse{} }
  1802. func (m *AnalyzeEntitiesResponse) String() string { return proto.CompactTextString(m) }
  1803. func (*AnalyzeEntitiesResponse) ProtoMessage() {}
  1804. func (*AnalyzeEntitiesResponse) Descriptor() ([]byte, []int) {
  1805. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{12}
  1806. }
  1807. func (m *AnalyzeEntitiesResponse) XXX_Unmarshal(b []byte) error {
  1808. return xxx_messageInfo_AnalyzeEntitiesResponse.Unmarshal(m, b)
  1809. }
  1810. func (m *AnalyzeEntitiesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1811. return xxx_messageInfo_AnalyzeEntitiesResponse.Marshal(b, m, deterministic)
  1812. }
  1813. func (dst *AnalyzeEntitiesResponse) XXX_Merge(src proto.Message) {
  1814. xxx_messageInfo_AnalyzeEntitiesResponse.Merge(dst, src)
  1815. }
  1816. func (m *AnalyzeEntitiesResponse) XXX_Size() int {
  1817. return xxx_messageInfo_AnalyzeEntitiesResponse.Size(m)
  1818. }
  1819. func (m *AnalyzeEntitiesResponse) XXX_DiscardUnknown() {
  1820. xxx_messageInfo_AnalyzeEntitiesResponse.DiscardUnknown(m)
  1821. }
  1822. var xxx_messageInfo_AnalyzeEntitiesResponse proto.InternalMessageInfo
  1823. func (m *AnalyzeEntitiesResponse) GetEntities() []*Entity {
  1824. if m != nil {
  1825. return m.Entities
  1826. }
  1827. return nil
  1828. }
  1829. func (m *AnalyzeEntitiesResponse) GetLanguage() string {
  1830. if m != nil {
  1831. return m.Language
  1832. }
  1833. return ""
  1834. }
  1835. // The syntax analysis request message.
  1836. type AnalyzeSyntaxRequest struct {
  1837. // Input document.
  1838. Document *Document `protobuf:"bytes,1,opt,name=document,proto3" json:"document,omitempty"`
  1839. // The encoding type used by the API to calculate offsets.
  1840. EncodingType EncodingType `protobuf:"varint,2,opt,name=encoding_type,json=encodingType,proto3,enum=google.cloud.language.v1beta1.EncodingType" json:"encoding_type,omitempty"`
  1841. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1842. XXX_unrecognized []byte `json:"-"`
  1843. XXX_sizecache int32 `json:"-"`
  1844. }
  1845. func (m *AnalyzeSyntaxRequest) Reset() { *m = AnalyzeSyntaxRequest{} }
  1846. func (m *AnalyzeSyntaxRequest) String() string { return proto.CompactTextString(m) }
  1847. func (*AnalyzeSyntaxRequest) ProtoMessage() {}
  1848. func (*AnalyzeSyntaxRequest) Descriptor() ([]byte, []int) {
  1849. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{13}
  1850. }
  1851. func (m *AnalyzeSyntaxRequest) XXX_Unmarshal(b []byte) error {
  1852. return xxx_messageInfo_AnalyzeSyntaxRequest.Unmarshal(m, b)
  1853. }
  1854. func (m *AnalyzeSyntaxRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1855. return xxx_messageInfo_AnalyzeSyntaxRequest.Marshal(b, m, deterministic)
  1856. }
  1857. func (dst *AnalyzeSyntaxRequest) XXX_Merge(src proto.Message) {
  1858. xxx_messageInfo_AnalyzeSyntaxRequest.Merge(dst, src)
  1859. }
  1860. func (m *AnalyzeSyntaxRequest) XXX_Size() int {
  1861. return xxx_messageInfo_AnalyzeSyntaxRequest.Size(m)
  1862. }
  1863. func (m *AnalyzeSyntaxRequest) XXX_DiscardUnknown() {
  1864. xxx_messageInfo_AnalyzeSyntaxRequest.DiscardUnknown(m)
  1865. }
  1866. var xxx_messageInfo_AnalyzeSyntaxRequest proto.InternalMessageInfo
  1867. func (m *AnalyzeSyntaxRequest) GetDocument() *Document {
  1868. if m != nil {
  1869. return m.Document
  1870. }
  1871. return nil
  1872. }
  1873. func (m *AnalyzeSyntaxRequest) GetEncodingType() EncodingType {
  1874. if m != nil {
  1875. return m.EncodingType
  1876. }
  1877. return EncodingType_NONE
  1878. }
  1879. // The syntax analysis response message.
  1880. type AnalyzeSyntaxResponse struct {
  1881. // Sentences in the input document.
  1882. Sentences []*Sentence `protobuf:"bytes,1,rep,name=sentences,proto3" json:"sentences,omitempty"`
  1883. // Tokens, along with their syntactic information, in the input document.
  1884. Tokens []*Token `protobuf:"bytes,2,rep,name=tokens,proto3" json:"tokens,omitempty"`
  1885. // The language of the text, which will be the same as the language specified
  1886. // in the request or, if not specified, the automatically-detected language.
  1887. // See [Document.language][google.cloud.language.v1beta1.Document.language]
  1888. // field for more details.
  1889. Language string `protobuf:"bytes,3,opt,name=language,proto3" json:"language,omitempty"`
  1890. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1891. XXX_unrecognized []byte `json:"-"`
  1892. XXX_sizecache int32 `json:"-"`
  1893. }
  1894. func (m *AnalyzeSyntaxResponse) Reset() { *m = AnalyzeSyntaxResponse{} }
  1895. func (m *AnalyzeSyntaxResponse) String() string { return proto.CompactTextString(m) }
  1896. func (*AnalyzeSyntaxResponse) ProtoMessage() {}
  1897. func (*AnalyzeSyntaxResponse) Descriptor() ([]byte, []int) {
  1898. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{14}
  1899. }
  1900. func (m *AnalyzeSyntaxResponse) XXX_Unmarshal(b []byte) error {
  1901. return xxx_messageInfo_AnalyzeSyntaxResponse.Unmarshal(m, b)
  1902. }
  1903. func (m *AnalyzeSyntaxResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1904. return xxx_messageInfo_AnalyzeSyntaxResponse.Marshal(b, m, deterministic)
  1905. }
  1906. func (dst *AnalyzeSyntaxResponse) XXX_Merge(src proto.Message) {
  1907. xxx_messageInfo_AnalyzeSyntaxResponse.Merge(dst, src)
  1908. }
  1909. func (m *AnalyzeSyntaxResponse) XXX_Size() int {
  1910. return xxx_messageInfo_AnalyzeSyntaxResponse.Size(m)
  1911. }
  1912. func (m *AnalyzeSyntaxResponse) XXX_DiscardUnknown() {
  1913. xxx_messageInfo_AnalyzeSyntaxResponse.DiscardUnknown(m)
  1914. }
  1915. var xxx_messageInfo_AnalyzeSyntaxResponse proto.InternalMessageInfo
  1916. func (m *AnalyzeSyntaxResponse) GetSentences() []*Sentence {
  1917. if m != nil {
  1918. return m.Sentences
  1919. }
  1920. return nil
  1921. }
  1922. func (m *AnalyzeSyntaxResponse) GetTokens() []*Token {
  1923. if m != nil {
  1924. return m.Tokens
  1925. }
  1926. return nil
  1927. }
  1928. func (m *AnalyzeSyntaxResponse) GetLanguage() string {
  1929. if m != nil {
  1930. return m.Language
  1931. }
  1932. return ""
  1933. }
  1934. // The request message for the text annotation API, which can perform multiple
  1935. // analysis types (sentiment, entities, and syntax) in one call.
  1936. type AnnotateTextRequest struct {
  1937. // Input document.
  1938. Document *Document `protobuf:"bytes,1,opt,name=document,proto3" json:"document,omitempty"`
  1939. // The enabled features.
  1940. Features *AnnotateTextRequest_Features `protobuf:"bytes,2,opt,name=features,proto3" json:"features,omitempty"`
  1941. // The encoding type used by the API to calculate offsets.
  1942. EncodingType EncodingType `protobuf:"varint,3,opt,name=encoding_type,json=encodingType,proto3,enum=google.cloud.language.v1beta1.EncodingType" json:"encoding_type,omitempty"`
  1943. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1944. XXX_unrecognized []byte `json:"-"`
  1945. XXX_sizecache int32 `json:"-"`
  1946. }
  1947. func (m *AnnotateTextRequest) Reset() { *m = AnnotateTextRequest{} }
  1948. func (m *AnnotateTextRequest) String() string { return proto.CompactTextString(m) }
  1949. func (*AnnotateTextRequest) ProtoMessage() {}
  1950. func (*AnnotateTextRequest) Descriptor() ([]byte, []int) {
  1951. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{15}
  1952. }
  1953. func (m *AnnotateTextRequest) XXX_Unmarshal(b []byte) error {
  1954. return xxx_messageInfo_AnnotateTextRequest.Unmarshal(m, b)
  1955. }
  1956. func (m *AnnotateTextRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1957. return xxx_messageInfo_AnnotateTextRequest.Marshal(b, m, deterministic)
  1958. }
  1959. func (dst *AnnotateTextRequest) XXX_Merge(src proto.Message) {
  1960. xxx_messageInfo_AnnotateTextRequest.Merge(dst, src)
  1961. }
  1962. func (m *AnnotateTextRequest) XXX_Size() int {
  1963. return xxx_messageInfo_AnnotateTextRequest.Size(m)
  1964. }
  1965. func (m *AnnotateTextRequest) XXX_DiscardUnknown() {
  1966. xxx_messageInfo_AnnotateTextRequest.DiscardUnknown(m)
  1967. }
  1968. var xxx_messageInfo_AnnotateTextRequest proto.InternalMessageInfo
  1969. func (m *AnnotateTextRequest) GetDocument() *Document {
  1970. if m != nil {
  1971. return m.Document
  1972. }
  1973. return nil
  1974. }
  1975. func (m *AnnotateTextRequest) GetFeatures() *AnnotateTextRequest_Features {
  1976. if m != nil {
  1977. return m.Features
  1978. }
  1979. return nil
  1980. }
  1981. func (m *AnnotateTextRequest) GetEncodingType() EncodingType {
  1982. if m != nil {
  1983. return m.EncodingType
  1984. }
  1985. return EncodingType_NONE
  1986. }
  1987. // All available features for sentiment, syntax, and semantic analysis.
  1988. // Setting each one to true will enable that specific analysis for the input.
  1989. type AnnotateTextRequest_Features struct {
  1990. // Extract syntax information.
  1991. ExtractSyntax bool `protobuf:"varint,1,opt,name=extract_syntax,json=extractSyntax,proto3" json:"extract_syntax,omitempty"`
  1992. // Extract entities.
  1993. ExtractEntities bool `protobuf:"varint,2,opt,name=extract_entities,json=extractEntities,proto3" json:"extract_entities,omitempty"`
  1994. // Extract document-level sentiment.
  1995. ExtractDocumentSentiment bool `protobuf:"varint,3,opt,name=extract_document_sentiment,json=extractDocumentSentiment,proto3" json:"extract_document_sentiment,omitempty"`
  1996. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1997. XXX_unrecognized []byte `json:"-"`
  1998. XXX_sizecache int32 `json:"-"`
  1999. }
  2000. func (m *AnnotateTextRequest_Features) Reset() { *m = AnnotateTextRequest_Features{} }
  2001. func (m *AnnotateTextRequest_Features) String() string { return proto.CompactTextString(m) }
  2002. func (*AnnotateTextRequest_Features) ProtoMessage() {}
  2003. func (*AnnotateTextRequest_Features) Descriptor() ([]byte, []int) {
  2004. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{15, 0}
  2005. }
  2006. func (m *AnnotateTextRequest_Features) XXX_Unmarshal(b []byte) error {
  2007. return xxx_messageInfo_AnnotateTextRequest_Features.Unmarshal(m, b)
  2008. }
  2009. func (m *AnnotateTextRequest_Features) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2010. return xxx_messageInfo_AnnotateTextRequest_Features.Marshal(b, m, deterministic)
  2011. }
  2012. func (dst *AnnotateTextRequest_Features) XXX_Merge(src proto.Message) {
  2013. xxx_messageInfo_AnnotateTextRequest_Features.Merge(dst, src)
  2014. }
  2015. func (m *AnnotateTextRequest_Features) XXX_Size() int {
  2016. return xxx_messageInfo_AnnotateTextRequest_Features.Size(m)
  2017. }
  2018. func (m *AnnotateTextRequest_Features) XXX_DiscardUnknown() {
  2019. xxx_messageInfo_AnnotateTextRequest_Features.DiscardUnknown(m)
  2020. }
  2021. var xxx_messageInfo_AnnotateTextRequest_Features proto.InternalMessageInfo
  2022. func (m *AnnotateTextRequest_Features) GetExtractSyntax() bool {
  2023. if m != nil {
  2024. return m.ExtractSyntax
  2025. }
  2026. return false
  2027. }
  2028. func (m *AnnotateTextRequest_Features) GetExtractEntities() bool {
  2029. if m != nil {
  2030. return m.ExtractEntities
  2031. }
  2032. return false
  2033. }
  2034. func (m *AnnotateTextRequest_Features) GetExtractDocumentSentiment() bool {
  2035. if m != nil {
  2036. return m.ExtractDocumentSentiment
  2037. }
  2038. return false
  2039. }
  2040. // The text annotations response message.
  2041. type AnnotateTextResponse struct {
  2042. // Sentences in the input document. Populated if the user enables
  2043. // [AnnotateTextRequest.Features.extract_syntax][google.cloud.language.v1beta1.AnnotateTextRequest.Features.extract_syntax].
  2044. Sentences []*Sentence `protobuf:"bytes,1,rep,name=sentences,proto3" json:"sentences,omitempty"`
  2045. // Tokens, along with their syntactic information, in the input document.
  2046. // Populated if the user enables
  2047. // [AnnotateTextRequest.Features.extract_syntax][google.cloud.language.v1beta1.AnnotateTextRequest.Features.extract_syntax].
  2048. Tokens []*Token `protobuf:"bytes,2,rep,name=tokens,proto3" json:"tokens,omitempty"`
  2049. // Entities, along with their semantic information, in the input document.
  2050. // Populated if the user enables
  2051. // [AnnotateTextRequest.Features.extract_entities][google.cloud.language.v1beta1.AnnotateTextRequest.Features.extract_entities].
  2052. Entities []*Entity `protobuf:"bytes,3,rep,name=entities,proto3" json:"entities,omitempty"`
  2053. // The overall sentiment for the document. Populated if the user enables
  2054. // [AnnotateTextRequest.Features.extract_document_sentiment][google.cloud.language.v1beta1.AnnotateTextRequest.Features.extract_document_sentiment].
  2055. DocumentSentiment *Sentiment `protobuf:"bytes,4,opt,name=document_sentiment,json=documentSentiment,proto3" json:"document_sentiment,omitempty"`
  2056. // The language of the text, which will be the same as the language specified
  2057. // in the request or, if not specified, the automatically-detected language.
  2058. // See [Document.language][google.cloud.language.v1beta1.Document.language]
  2059. // field for more details.
  2060. Language string `protobuf:"bytes,5,opt,name=language,proto3" json:"language,omitempty"`
  2061. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2062. XXX_unrecognized []byte `json:"-"`
  2063. XXX_sizecache int32 `json:"-"`
  2064. }
  2065. func (m *AnnotateTextResponse) Reset() { *m = AnnotateTextResponse{} }
  2066. func (m *AnnotateTextResponse) String() string { return proto.CompactTextString(m) }
  2067. func (*AnnotateTextResponse) ProtoMessage() {}
  2068. func (*AnnotateTextResponse) Descriptor() ([]byte, []int) {
  2069. return fileDescriptor_language_service_5e5adeaca10bf53a, []int{16}
  2070. }
  2071. func (m *AnnotateTextResponse) XXX_Unmarshal(b []byte) error {
  2072. return xxx_messageInfo_AnnotateTextResponse.Unmarshal(m, b)
  2073. }
  2074. func (m *AnnotateTextResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2075. return xxx_messageInfo_AnnotateTextResponse.Marshal(b, m, deterministic)
  2076. }
  2077. func (dst *AnnotateTextResponse) XXX_Merge(src proto.Message) {
  2078. xxx_messageInfo_AnnotateTextResponse.Merge(dst, src)
  2079. }
  2080. func (m *AnnotateTextResponse) XXX_Size() int {
  2081. return xxx_messageInfo_AnnotateTextResponse.Size(m)
  2082. }
  2083. func (m *AnnotateTextResponse) XXX_DiscardUnknown() {
  2084. xxx_messageInfo_AnnotateTextResponse.DiscardUnknown(m)
  2085. }
  2086. var xxx_messageInfo_AnnotateTextResponse proto.InternalMessageInfo
  2087. func (m *AnnotateTextResponse) GetSentences() []*Sentence {
  2088. if m != nil {
  2089. return m.Sentences
  2090. }
  2091. return nil
  2092. }
  2093. func (m *AnnotateTextResponse) GetTokens() []*Token {
  2094. if m != nil {
  2095. return m.Tokens
  2096. }
  2097. return nil
  2098. }
  2099. func (m *AnnotateTextResponse) GetEntities() []*Entity {
  2100. if m != nil {
  2101. return m.Entities
  2102. }
  2103. return nil
  2104. }
  2105. func (m *AnnotateTextResponse) GetDocumentSentiment() *Sentiment {
  2106. if m != nil {
  2107. return m.DocumentSentiment
  2108. }
  2109. return nil
  2110. }
  2111. func (m *AnnotateTextResponse) GetLanguage() string {
  2112. if m != nil {
  2113. return m.Language
  2114. }
  2115. return ""
  2116. }
  2117. func init() {
  2118. proto.RegisterType((*Document)(nil), "google.cloud.language.v1beta1.Document")
  2119. proto.RegisterType((*Sentence)(nil), "google.cloud.language.v1beta1.Sentence")
  2120. proto.RegisterType((*Entity)(nil), "google.cloud.language.v1beta1.Entity")
  2121. proto.RegisterMapType((map[string]string)(nil), "google.cloud.language.v1beta1.Entity.MetadataEntry")
  2122. proto.RegisterType((*Token)(nil), "google.cloud.language.v1beta1.Token")
  2123. proto.RegisterType((*Sentiment)(nil), "google.cloud.language.v1beta1.Sentiment")
  2124. proto.RegisterType((*PartOfSpeech)(nil), "google.cloud.language.v1beta1.PartOfSpeech")
  2125. proto.RegisterType((*DependencyEdge)(nil), "google.cloud.language.v1beta1.DependencyEdge")
  2126. proto.RegisterType((*EntityMention)(nil), "google.cloud.language.v1beta1.EntityMention")
  2127. proto.RegisterType((*TextSpan)(nil), "google.cloud.language.v1beta1.TextSpan")
  2128. proto.RegisterType((*AnalyzeSentimentRequest)(nil), "google.cloud.language.v1beta1.AnalyzeSentimentRequest")
  2129. proto.RegisterType((*AnalyzeSentimentResponse)(nil), "google.cloud.language.v1beta1.AnalyzeSentimentResponse")
  2130. proto.RegisterType((*AnalyzeEntitiesRequest)(nil), "google.cloud.language.v1beta1.AnalyzeEntitiesRequest")
  2131. proto.RegisterType((*AnalyzeEntitiesResponse)(nil), "google.cloud.language.v1beta1.AnalyzeEntitiesResponse")
  2132. proto.RegisterType((*AnalyzeSyntaxRequest)(nil), "google.cloud.language.v1beta1.AnalyzeSyntaxRequest")
  2133. proto.RegisterType((*AnalyzeSyntaxResponse)(nil), "google.cloud.language.v1beta1.AnalyzeSyntaxResponse")
  2134. proto.RegisterType((*AnnotateTextRequest)(nil), "google.cloud.language.v1beta1.AnnotateTextRequest")
  2135. proto.RegisterType((*AnnotateTextRequest_Features)(nil), "google.cloud.language.v1beta1.AnnotateTextRequest.Features")
  2136. proto.RegisterType((*AnnotateTextResponse)(nil), "google.cloud.language.v1beta1.AnnotateTextResponse")
  2137. proto.RegisterEnum("google.cloud.language.v1beta1.EncodingType", EncodingType_name, EncodingType_value)
  2138. proto.RegisterEnum("google.cloud.language.v1beta1.Document_Type", Document_Type_name, Document_Type_value)
  2139. proto.RegisterEnum("google.cloud.language.v1beta1.Entity_Type", Entity_Type_name, Entity_Type_value)
  2140. proto.RegisterEnum("google.cloud.language.v1beta1.PartOfSpeech_Tag", PartOfSpeech_Tag_name, PartOfSpeech_Tag_value)
  2141. proto.RegisterEnum("google.cloud.language.v1beta1.PartOfSpeech_Aspect", PartOfSpeech_Aspect_name, PartOfSpeech_Aspect_value)
  2142. proto.RegisterEnum("google.cloud.language.v1beta1.PartOfSpeech_Case", PartOfSpeech_Case_name, PartOfSpeech_Case_value)
  2143. proto.RegisterEnum("google.cloud.language.v1beta1.PartOfSpeech_Form", PartOfSpeech_Form_name, PartOfSpeech_Form_value)
  2144. proto.RegisterEnum("google.cloud.language.v1beta1.PartOfSpeech_Gender", PartOfSpeech_Gender_name, PartOfSpeech_Gender_value)
  2145. proto.RegisterEnum("google.cloud.language.v1beta1.PartOfSpeech_Mood", PartOfSpeech_Mood_name, PartOfSpeech_Mood_value)
  2146. proto.RegisterEnum("google.cloud.language.v1beta1.PartOfSpeech_Number", PartOfSpeech_Number_name, PartOfSpeech_Number_value)
  2147. proto.RegisterEnum("google.cloud.language.v1beta1.PartOfSpeech_Person", PartOfSpeech_Person_name, PartOfSpeech_Person_value)
  2148. proto.RegisterEnum("google.cloud.language.v1beta1.PartOfSpeech_Proper", PartOfSpeech_Proper_name, PartOfSpeech_Proper_value)
  2149. proto.RegisterEnum("google.cloud.language.v1beta1.PartOfSpeech_Reciprocity", PartOfSpeech_Reciprocity_name, PartOfSpeech_Reciprocity_value)
  2150. proto.RegisterEnum("google.cloud.language.v1beta1.PartOfSpeech_Tense", PartOfSpeech_Tense_name, PartOfSpeech_Tense_value)
  2151. proto.RegisterEnum("google.cloud.language.v1beta1.PartOfSpeech_Voice", PartOfSpeech_Voice_name, PartOfSpeech_Voice_value)
  2152. proto.RegisterEnum("google.cloud.language.v1beta1.DependencyEdge_Label", DependencyEdge_Label_name, DependencyEdge_Label_value)
  2153. proto.RegisterEnum("google.cloud.language.v1beta1.EntityMention_Type", EntityMention_Type_name, EntityMention_Type_value)
  2154. }
  2155. // Reference imports to suppress errors if they are not otherwise used.
  2156. var _ context.Context
  2157. var _ grpc.ClientConn
  2158. // This is a compile-time assertion to ensure that this generated file
  2159. // is compatible with the grpc package it is being compiled against.
  2160. const _ = grpc.SupportPackageIsVersion4
  2161. // LanguageServiceClient is the client API for LanguageService service.
  2162. //
  2163. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
  2164. type LanguageServiceClient interface {
  2165. // Analyzes the sentiment of the provided text.
  2166. AnalyzeSentiment(ctx context.Context, in *AnalyzeSentimentRequest, opts ...grpc.CallOption) (*AnalyzeSentimentResponse, error)
  2167. // Finds named entities (currently proper names and common nouns) in the text
  2168. // along with entity types, salience, mentions for each entity, and
  2169. // other properties.
  2170. AnalyzeEntities(ctx context.Context, in *AnalyzeEntitiesRequest, opts ...grpc.CallOption) (*AnalyzeEntitiesResponse, error)
  2171. // Analyzes the syntax of the text and provides sentence boundaries and
  2172. // tokenization along with part of speech tags, dependency trees, and other
  2173. // properties.
  2174. AnalyzeSyntax(ctx context.Context, in *AnalyzeSyntaxRequest, opts ...grpc.CallOption) (*AnalyzeSyntaxResponse, error)
  2175. // A convenience method that provides all the features that analyzeSentiment,
  2176. // analyzeEntities, and analyzeSyntax provide in one call.
  2177. AnnotateText(ctx context.Context, in *AnnotateTextRequest, opts ...grpc.CallOption) (*AnnotateTextResponse, error)
  2178. }
  2179. type languageServiceClient struct {
  2180. cc *grpc.ClientConn
  2181. }
  2182. func NewLanguageServiceClient(cc *grpc.ClientConn) LanguageServiceClient {
  2183. return &languageServiceClient{cc}
  2184. }
  2185. func (c *languageServiceClient) AnalyzeSentiment(ctx context.Context, in *AnalyzeSentimentRequest, opts ...grpc.CallOption) (*AnalyzeSentimentResponse, error) {
  2186. out := new(AnalyzeSentimentResponse)
  2187. err := c.cc.Invoke(ctx, "/google.cloud.language.v1beta1.LanguageService/AnalyzeSentiment", in, out, opts...)
  2188. if err != nil {
  2189. return nil, err
  2190. }
  2191. return out, nil
  2192. }
  2193. func (c *languageServiceClient) AnalyzeEntities(ctx context.Context, in *AnalyzeEntitiesRequest, opts ...grpc.CallOption) (*AnalyzeEntitiesResponse, error) {
  2194. out := new(AnalyzeEntitiesResponse)
  2195. err := c.cc.Invoke(ctx, "/google.cloud.language.v1beta1.LanguageService/AnalyzeEntities", in, out, opts...)
  2196. if err != nil {
  2197. return nil, err
  2198. }
  2199. return out, nil
  2200. }
  2201. func (c *languageServiceClient) AnalyzeSyntax(ctx context.Context, in *AnalyzeSyntaxRequest, opts ...grpc.CallOption) (*AnalyzeSyntaxResponse, error) {
  2202. out := new(AnalyzeSyntaxResponse)
  2203. err := c.cc.Invoke(ctx, "/google.cloud.language.v1beta1.LanguageService/AnalyzeSyntax", in, out, opts...)
  2204. if err != nil {
  2205. return nil, err
  2206. }
  2207. return out, nil
  2208. }
  2209. func (c *languageServiceClient) AnnotateText(ctx context.Context, in *AnnotateTextRequest, opts ...grpc.CallOption) (*AnnotateTextResponse, error) {
  2210. out := new(AnnotateTextResponse)
  2211. err := c.cc.Invoke(ctx, "/google.cloud.language.v1beta1.LanguageService/AnnotateText", in, out, opts...)
  2212. if err != nil {
  2213. return nil, err
  2214. }
  2215. return out, nil
  2216. }
  2217. // LanguageServiceServer is the server API for LanguageService service.
  2218. type LanguageServiceServer interface {
  2219. // Analyzes the sentiment of the provided text.
  2220. AnalyzeSentiment(context.Context, *AnalyzeSentimentRequest) (*AnalyzeSentimentResponse, error)
  2221. // Finds named entities (currently proper names and common nouns) in the text
  2222. // along with entity types, salience, mentions for each entity, and
  2223. // other properties.
  2224. AnalyzeEntities(context.Context, *AnalyzeEntitiesRequest) (*AnalyzeEntitiesResponse, error)
  2225. // Analyzes the syntax of the text and provides sentence boundaries and
  2226. // tokenization along with part of speech tags, dependency trees, and other
  2227. // properties.
  2228. AnalyzeSyntax(context.Context, *AnalyzeSyntaxRequest) (*AnalyzeSyntaxResponse, error)
  2229. // A convenience method that provides all the features that analyzeSentiment,
  2230. // analyzeEntities, and analyzeSyntax provide in one call.
  2231. AnnotateText(context.Context, *AnnotateTextRequest) (*AnnotateTextResponse, error)
  2232. }
  2233. func RegisterLanguageServiceServer(s *grpc.Server, srv LanguageServiceServer) {
  2234. s.RegisterService(&_LanguageService_serviceDesc, srv)
  2235. }
  2236. func _LanguageService_AnalyzeSentiment_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2237. in := new(AnalyzeSentimentRequest)
  2238. if err := dec(in); err != nil {
  2239. return nil, err
  2240. }
  2241. if interceptor == nil {
  2242. return srv.(LanguageServiceServer).AnalyzeSentiment(ctx, in)
  2243. }
  2244. info := &grpc.UnaryServerInfo{
  2245. Server: srv,
  2246. FullMethod: "/google.cloud.language.v1beta1.LanguageService/AnalyzeSentiment",
  2247. }
  2248. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2249. return srv.(LanguageServiceServer).AnalyzeSentiment(ctx, req.(*AnalyzeSentimentRequest))
  2250. }
  2251. return interceptor(ctx, in, info, handler)
  2252. }
  2253. func _LanguageService_AnalyzeEntities_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2254. in := new(AnalyzeEntitiesRequest)
  2255. if err := dec(in); err != nil {
  2256. return nil, err
  2257. }
  2258. if interceptor == nil {
  2259. return srv.(LanguageServiceServer).AnalyzeEntities(ctx, in)
  2260. }
  2261. info := &grpc.UnaryServerInfo{
  2262. Server: srv,
  2263. FullMethod: "/google.cloud.language.v1beta1.LanguageService/AnalyzeEntities",
  2264. }
  2265. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2266. return srv.(LanguageServiceServer).AnalyzeEntities(ctx, req.(*AnalyzeEntitiesRequest))
  2267. }
  2268. return interceptor(ctx, in, info, handler)
  2269. }
  2270. func _LanguageService_AnalyzeSyntax_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2271. in := new(AnalyzeSyntaxRequest)
  2272. if err := dec(in); err != nil {
  2273. return nil, err
  2274. }
  2275. if interceptor == nil {
  2276. return srv.(LanguageServiceServer).AnalyzeSyntax(ctx, in)
  2277. }
  2278. info := &grpc.UnaryServerInfo{
  2279. Server: srv,
  2280. FullMethod: "/google.cloud.language.v1beta1.LanguageService/AnalyzeSyntax",
  2281. }
  2282. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2283. return srv.(LanguageServiceServer).AnalyzeSyntax(ctx, req.(*AnalyzeSyntaxRequest))
  2284. }
  2285. return interceptor(ctx, in, info, handler)
  2286. }
  2287. func _LanguageService_AnnotateText_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2288. in := new(AnnotateTextRequest)
  2289. if err := dec(in); err != nil {
  2290. return nil, err
  2291. }
  2292. if interceptor == nil {
  2293. return srv.(LanguageServiceServer).AnnotateText(ctx, in)
  2294. }
  2295. info := &grpc.UnaryServerInfo{
  2296. Server: srv,
  2297. FullMethod: "/google.cloud.language.v1beta1.LanguageService/AnnotateText",
  2298. }
  2299. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2300. return srv.(LanguageServiceServer).AnnotateText(ctx, req.(*AnnotateTextRequest))
  2301. }
  2302. return interceptor(ctx, in, info, handler)
  2303. }
  2304. var _LanguageService_serviceDesc = grpc.ServiceDesc{
  2305. ServiceName: "google.cloud.language.v1beta1.LanguageService",
  2306. HandlerType: (*LanguageServiceServer)(nil),
  2307. Methods: []grpc.MethodDesc{
  2308. {
  2309. MethodName: "AnalyzeSentiment",
  2310. Handler: _LanguageService_AnalyzeSentiment_Handler,
  2311. },
  2312. {
  2313. MethodName: "AnalyzeEntities",
  2314. Handler: _LanguageService_AnalyzeEntities_Handler,
  2315. },
  2316. {
  2317. MethodName: "AnalyzeSyntax",
  2318. Handler: _LanguageService_AnalyzeSyntax_Handler,
  2319. },
  2320. {
  2321. MethodName: "AnnotateText",
  2322. Handler: _LanguageService_AnnotateText_Handler,
  2323. },
  2324. },
  2325. Streams: []grpc.StreamDesc{},
  2326. Metadata: "google/cloud/language/v1beta1/language_service.proto",
  2327. }
  2328. func init() {
  2329. proto.RegisterFile("google/cloud/language/v1beta1/language_service.proto", fileDescriptor_language_service_5e5adeaca10bf53a)
  2330. }
  2331. var fileDescriptor_language_service_5e5adeaca10bf53a = []byte{
  2332. // 2755 bytes of a gzipped FileDescriptorProto
  2333. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x59, 0x4f, 0x73, 0xdb, 0xc6,
  2334. 0x15, 0x37, 0xf8, 0x4f, 0xe4, 0x92, 0x92, 0xd6, 0x88, 0x93, 0xb0, 0x6a, 0xd2, 0x38, 0x48, 0x5c,
  2335. 0x2b, 0x76, 0x42, 0xc5, 0x52, 0xe2, 0xb8, 0x76, 0x9a, 0x06, 0x02, 0x96, 0x14, 0x64, 0x10, 0x40,
  2336. 0x16, 0x00, 0x25, 0xa7, 0x07, 0x0e, 0x4c, 0xae, 0x19, 0x4e, 0x24, 0x80, 0x25, 0x21, 0x8f, 0xd5,
  2337. 0x4b, 0x67, 0x32, 0xd3, 0x63, 0xa7, 0x87, 0xde, 0x7a, 0x6c, 0x0f, 0x3d, 0x75, 0xd2, 0x99, 0x5e,
  2338. 0xda, 0x0f, 0xd0, 0x43, 0xa7, 0xc7, 0xcc, 0xf4, 0x13, 0xf4, 0xd8, 0x43, 0x0f, 0x3d, 0xf4, 0xd8,
  2339. 0x79, 0xbb, 0x0b, 0xfe, 0x51, 0x1c, 0x4b, 0x4c, 0x72, 0xc8, 0x6d, 0xf7, 0xf1, 0xfd, 0x7e, 0xef,
  2340. 0xed, 0xdb, 0xb7, 0xef, 0x2d, 0x96, 0xe8, 0x9d, 0x41, 0x92, 0x0c, 0x8e, 0xd8, 0x56, 0xef, 0x28,
  2341. 0x39, 0xe9, 0x6f, 0x1d, 0x45, 0xf1, 0xe0, 0x24, 0x1a, 0xb0, 0xad, 0xc7, 0xb7, 0x1e, 0xb2, 0x34,
  2342. 0xba, 0x35, 0x15, 0x74, 0x27, 0x6c, 0xfc, 0x78, 0xd8, 0x63, 0x8d, 0xd1, 0x38, 0x49, 0x13, 0xf5,
  2343. 0x65, 0x81, 0x6a, 0x70, 0x54, 0x23, 0x53, 0x6a, 0x48, 0xd4, 0xc6, 0x4b, 0x92, 0x34, 0x1a, 0x0d,
  2344. 0xb7, 0xa2, 0x38, 0x4e, 0xd2, 0x28, 0x1d, 0x26, 0xf1, 0x44, 0x80, 0xb5, 0xff, 0x28, 0xa8, 0x6c,
  2345. 0x26, 0xbd, 0x93, 0x63, 0x16, 0xa7, 0xea, 0x87, 0xa8, 0x90, 0x9e, 0x8e, 0x58, 0x5d, 0xb9, 0xaa,
  2346. 0x6c, 0xae, 0x6d, 0xbf, 0xd9, 0x78, 0x26, 0x71, 0x23, 0x83, 0x35, 0x82, 0xd3, 0x11, 0xa3, 0x1c,
  2347. 0xa9, 0x6e, 0xa0, 0x95, 0x5e, 0x12, 0xa7, 0x2c, 0x4e, 0xeb, 0xb9, 0xab, 0xca, 0x66, 0x65, 0xef,
  2348. 0x12, 0xcd, 0x04, 0xea, 0x26, 0x5a, 0x1f, 0xf4, 0x26, 0x5d, 0x39, 0xed, 0x9e, 0x8c, 0x87, 0xf5,
  2349. 0xbc, 0xd4, 0x59, 0x1d, 0xf4, 0x26, 0x86, 0x90, 0x87, 0xe3, 0xa1, 0xba, 0x81, 0xca, 0x99, 0xb5,
  2350. 0x7a, 0x01, 0x54, 0xe8, 0x74, 0xae, 0xdd, 0x46, 0x05, 0xb0, 0xa7, 0x5e, 0x41, 0x38, 0x78, 0xe0,
  2351. 0x91, 0x6e, 0xe8, 0xf8, 0x1e, 0x31, 0xac, 0xa6, 0x45, 0x4c, 0x7c, 0x49, 0x5d, 0x43, 0xc8, 0xb3,
  2352. 0x75, 0xcb, 0xe9, 0x06, 0xe4, 0x30, 0xc0, 0x8a, 0x5a, 0x46, 0x85, 0xbd, 0xa0, 0x6d, 0xe3, 0xdc,
  2353. 0x6e, 0x19, 0x95, 0x26, 0xc9, 0xc9, 0xb8, 0xc7, 0xb4, 0x5f, 0x2b, 0xa8, 0xec, 0x33, 0x30, 0xd6,
  2354. 0x63, 0xea, 0x3d, 0x54, 0x48, 0xd9, 0x93, 0x94, 0x2f, 0xb9, 0xba, 0x7d, 0xfd, 0x9c, 0x25, 0x07,
  2355. 0xec, 0x49, 0xea, 0x8f, 0xa2, 0x98, 0x72, 0x90, 0xda, 0x44, 0x95, 0x09, 0x8b, 0xd3, 0xe1, 0x71,
  2356. 0xb6, 0xde, 0xea, 0xf6, 0xe6, 0x39, 0x0c, 0x7e, 0xa6, 0x4f, 0x67, 0x50, 0xed, 0x1f, 0x79, 0x54,
  2357. 0x22, 0x71, 0x3a, 0x4c, 0x4f, 0x55, 0x15, 0x15, 0xe2, 0xe8, 0x58, 0x6c, 0x41, 0x85, 0xf2, 0xb1,
  2358. 0xfa, 0x81, 0xdc, 0x96, 0x1c, 0xdf, 0x96, 0x1b, 0xe7, 0x58, 0x10, 0x44, 0xf3, 0x9b, 0xe2, 0xa2,
  2359. 0xf2, 0x31, 0x4b, 0xa3, 0x7e, 0x94, 0x46, 0xf5, 0xfc, 0xd5, 0xfc, 0x66, 0x75, 0x7b, 0xe7, 0x62,
  2360. 0x1c, 0x6d, 0x89, 0x22, 0x71, 0x3a, 0x3e, 0xa5, 0x53, 0x12, 0xd8, 0x9f, 0x49, 0x74, 0x34, 0x84,
  2361. 0x00, 0xf2, 0xfd, 0xc9, 0xd1, 0xe9, 0x5c, 0xdd, 0x03, 0x63, 0x31, 0x4f, 0xb1, 0x7a, 0x91, 0x1b,
  2362. 0x7b, 0xf3, 0x42, 0xc6, 0xda, 0x02, 0x44, 0xa7, 0xe8, 0x8d, 0x7b, 0x68, 0x75, 0xc1, 0x01, 0x15,
  2363. 0xa3, 0xfc, 0xa7, 0xec, 0x54, 0x86, 0x06, 0x86, 0xea, 0x15, 0x54, 0x7c, 0x1c, 0x1d, 0x9d, 0x88,
  2364. 0xd0, 0x54, 0xa8, 0x98, 0xdc, 0xcd, 0xdd, 0x51, 0xb4, 0x53, 0x99, 0x26, 0x55, 0xb4, 0x12, 0x3a,
  2365. 0xf7, 0x1d, 0xf7, 0xc0, 0xc1, 0x97, 0x54, 0x84, 0x4a, 0x1e, 0xa1, 0xbe, 0xeb, 0x60, 0x45, 0xad,
  2366. 0xa1, 0xb2, 0xed, 0x1a, 0x7a, 0x60, 0xb9, 0x0e, 0xce, 0xa9, 0x18, 0xd5, 0x5c, 0xda, 0xd2, 0x1d,
  2367. 0xeb, 0x63, 0x21, 0xc9, 0xab, 0x15, 0x54, 0x24, 0x1d, 0xe2, 0x04, 0xb8, 0xa0, 0xae, 0xa3, 0xea,
  2368. 0x81, 0x4b, 0xef, 0x77, 0xdd, 0x66, 0x57, 0xa7, 0x01, 0x2e, 0xaa, 0x97, 0xd1, 0xaa, 0xe1, 0x3a,
  2369. 0x7e, 0xd8, 0x26, 0xb4, 0xdb, 0x72, 0x5d, 0x13, 0x97, 0x40, 0xdd, 0x0d, 0xf6, 0x08, 0xc5, 0x2b,
  2370. 0xda, 0x2f, 0x73, 0xa8, 0x18, 0x24, 0x9f, 0xb2, 0xf8, 0x9b, 0x25, 0xd7, 0x47, 0x68, 0x6d, 0x14,
  2371. 0x8d, 0xd3, 0x6e, 0xf2, 0xa8, 0x3b, 0x19, 0x31, 0xd6, 0xfb, 0x44, 0x66, 0xd8, 0xcd, 0x73, 0x68,
  2372. 0xbc, 0x68, 0x9c, 0xba, 0x8f, 0x7c, 0x0e, 0xa1, 0xb5, 0xd1, 0xdc, 0x4c, 0xed, 0xa0, 0xf5, 0x3e,
  2373. 0x1b, 0xb1, 0xb8, 0xcf, 0xe2, 0xde, 0x69, 0x97, 0xf5, 0x07, 0x8c, 0x9f, 0xc0, 0xea, 0xf6, 0x5b,
  2374. 0xe7, 0x1d, 0xf5, 0x29, 0x8a, 0xf4, 0x07, 0x8c, 0xae, 0xf5, 0x17, 0xe6, 0xb0, 0x0d, 0x47, 0xec,
  2375. 0xf8, 0x38, 0x92, 0x87, 0x55, 0x4c, 0xb4, 0x9f, 0xa2, 0xca, 0x34, 0xdb, 0x21, 0x65, 0x46, 0xc9,
  2376. 0x51, 0x34, 0x1e, 0xa6, 0x62, 0x03, 0x73, 0x74, 0x3a, 0x57, 0x5f, 0x42, 0x95, 0xe3, 0x68, 0x10,
  2377. 0x0f, 0xd3, 0x93, 0xbe, 0xd8, 0xc9, 0x1c, 0x9d, 0x09, 0x80, 0x7c, 0xd2, 0x4b, 0xc6, 0xc2, 0xd5,
  2378. 0x1c, 0x15, 0x13, 0xed, 0xaf, 0x97, 0x51, 0x6d, 0x7e, 0xa5, 0xaa, 0x8e, 0xf2, 0x69, 0x34, 0x90,
  2379. 0xa5, 0x6b, 0x6b, 0x89, 0x18, 0x35, 0x82, 0x68, 0x40, 0x01, 0xab, 0xee, 0xa3, 0x52, 0x34, 0x19,
  2380. 0xb1, 0x5e, 0x2a, 0x4f, 0xda, 0xf6, 0x32, 0x2c, 0x3a, 0x47, 0x52, 0xc9, 0xa0, 0x9a, 0xa8, 0xd0,
  2381. 0x8b, 0x26, 0xc2, 0xe9, 0xb5, 0xed, 0xb7, 0x97, 0x61, 0x32, 0xa2, 0x09, 0xa3, 0x1c, 0x0d, 0x2c,
  2382. 0x8f, 0x92, 0xf1, 0x31, 0x8f, 0xeb, 0x92, 0x2c, 0xcd, 0x64, 0x7c, 0x4c, 0x39, 0x1a, 0xd6, 0x35,
  2383. 0x80, 0xed, 0x1a, 0xd7, 0x8b, 0xcb, 0xaf, 0xab, 0xc5, 0x91, 0x54, 0x32, 0x80, 0x47, 0xc7, 0x49,
  2384. 0xd2, 0xaf, 0x97, 0x96, 0xf7, 0xa8, 0x9d, 0x24, 0x7d, 0xca, 0xd1, 0xe0, 0x51, 0x7c, 0x72, 0xfc,
  2385. 0x90, 0x8d, 0xeb, 0x2b, 0xcb, 0x7b, 0xe4, 0x70, 0x24, 0x95, 0x0c, 0xc0, 0x35, 0x62, 0xe3, 0x49,
  2386. 0x12, 0xd7, 0xcb, 0xcb, 0x73, 0x79, 0x1c, 0x49, 0x25, 0x03, 0xe7, 0x1a, 0x27, 0x23, 0x36, 0xae,
  2387. 0x57, 0xbe, 0x06, 0x17, 0x47, 0x52, 0xc9, 0xa0, 0x3e, 0x40, 0xd5, 0x31, 0xeb, 0x0d, 0x47, 0xe3,
  2388. 0xa4, 0x07, 0x49, 0x8f, 0x38, 0xe1, 0x7b, 0xcb, 0x10, 0xd2, 0x19, 0x9c, 0xce, 0x73, 0xa9, 0x2d,
  2389. 0x54, 0x4c, 0x59, 0x3c, 0x61, 0xf5, 0x2a, 0x27, 0xbd, 0xb5, 0x54, 0xb6, 0x03, 0x90, 0x0a, 0x3c,
  2390. 0x10, 0x3d, 0x4e, 0x86, 0x3d, 0x56, 0xaf, 0x2d, 0x4f, 0xd4, 0x01, 0x20, 0x15, 0x78, 0xed, 0x57,
  2391. 0x0a, 0xca, 0x07, 0xd1, 0x60, 0xb1, 0xdc, 0xae, 0xa0, 0xbc, 0x6e, 0xee, 0x63, 0x45, 0x0c, 0x3c,
  2392. 0x9c, 0x13, 0x83, 0x0e, 0xce, 0x43, 0x5f, 0x36, 0x5c, 0x67, 0x1f, 0x17, 0x40, 0x64, 0x12, 0x28,
  2393. 0xaa, 0x65, 0x54, 0x70, 0xdc, 0xd0, 0xc1, 0x25, 0x10, 0x39, 0x61, 0x1b, 0xaf, 0x80, 0xc8, 0xa3,
  2394. 0xae, 0x83, 0xcb, 0x20, 0xf2, 0x68, 0x80, 0x2b, 0x50, 0x67, 0xbd, 0xd0, 0x31, 0x02, 0x8c, 0xe0,
  2395. 0xd7, 0x0e, 0xa1, 0xbb, 0xb8, 0xaa, 0x16, 0x91, 0x72, 0x88, 0x6b, 0xf0, 0x9b, 0xde, 0x6c, 0x5a,
  2396. 0x87, 0x78, 0x55, 0x73, 0x51, 0x49, 0x1c, 0x48, 0x55, 0x45, 0x6b, 0x3a, 0xdc, 0x10, 0x82, 0xee,
  2397. 0xcc, 0x31, 0xb8, 0x25, 0x10, 0xda, 0x24, 0x46, 0x60, 0x75, 0x08, 0x56, 0xa0, 0xfa, 0x5b, 0xed,
  2398. 0x39, 0x49, 0x0e, 0x4a, 0xbe, 0x47, 0xdd, 0x16, 0x25, 0xbe, 0x0f, 0x82, 0xbc, 0xf6, 0x3f, 0x05,
  2399. 0x15, 0xe0, 0x60, 0x82, 0xae, 0xa1, 0xfb, 0x64, 0x91, 0x4d, 0x37, 0x8c, 0xd0, 0xd7, 0x25, 0xdb,
  2400. 0x2a, 0xaa, 0xe8, 0x26, 0x78, 0x66, 0xe9, 0x36, 0xce, 0x89, 0x66, 0xd1, 0xf6, 0x6c, 0xd2, 0x26,
  2401. 0x0e, 0xd7, 0xc8, 0x43, 0x1f, 0x32, 0x85, 0x76, 0x01, 0xfa, 0x50, 0x8b, 0x38, 0x16, 0x9f, 0x15,
  2402. 0xb9, 0x27, 0x8e, 0x1f, 0xd0, 0x10, 0x94, 0x75, 0x1b, 0x97, 0x66, 0x7d, 0xaa, 0x43, 0xf0, 0x0a,
  2403. 0xd8, 0x72, 0xdc, 0xb6, 0xe5, 0x88, 0x79, 0x19, 0xe2, 0xed, 0xee, 0xda, 0xd6, 0x47, 0x21, 0xc1,
  2404. 0x15, 0x30, 0xec, 0xe9, 0x34, 0x10, 0x5c, 0x08, 0x0c, 0x7b, 0x94, 0x78, 0xae, 0x6f, 0x41, 0x4b,
  2405. 0xd3, 0x6d, 0x5c, 0x85, 0x60, 0x50, 0xd2, 0xb4, 0xc9, 0xa1, 0xd5, 0x21, 0x5d, 0x58, 0x06, 0xae,
  2406. 0x81, 0x1a, 0x25, 0x36, 0x27, 0x14, 0xa2, 0x55, 0xb0, 0xd9, 0xc9, 0x6c, 0xae, 0x69, 0x9f, 0x2b,
  2407. 0xa8, 0x00, 0xd5, 0x04, 0x9c, 0x6b, 0xba, 0xb4, 0x3d, 0xb7, 0xf4, 0x1a, 0x2a, 0xeb, 0x26, 0x38,
  2408. 0xa4, 0xdb, 0x72, 0xe1, 0xe1, 0xa1, 0x65, 0x5b, 0x3a, 0x7d, 0x80, 0x73, 0x60, 0x6c, 0x6e, 0xe1,
  2409. 0x1f, 0x13, 0x8a, 0xf3, 0x9c, 0xc2, 0x72, 0x74, 0xbb, 0x4b, 0x1c, 0xd3, 0x72, 0x5a, 0xb8, 0x00,
  2410. 0xb1, 0x68, 0x11, 0x1a, 0x3a, 0x26, 0x2e, 0xc2, 0x98, 0x12, 0xdd, 0xb6, 0x7c, 0xb1, 0x6e, 0x8b,
  2411. 0xca, 0xd9, 0x0a, 0x6c, 0xad, 0xbf, 0xe7, 0xd2, 0x00, 0x97, 0x61, 0xdb, 0x6d, 0xd7, 0x69, 0x89,
  2412. 0x5c, 0x70, 0xa9, 0x49, 0x28, 0x46, 0xa0, 0x2d, 0xaf, 0x81, 0x06, 0xae, 0x6a, 0x04, 0x95, 0x44,
  2413. 0xd9, 0x02, 0x1f, 0x5a, 0xc4, 0x31, 0x09, 0x5d, 0x74, 0xba, 0x49, 0xda, 0x96, 0x63, 0x39, 0x72,
  2414. 0xb7, 0xda, 0xba, 0x6f, 0x84, 0x36, 0x4c, 0x73, 0xe0, 0x82, 0x43, 0xc2, 0x00, 0x9c, 0xd5, 0x7e,
  2415. 0x81, 0x0a, 0x50, 0xb3, 0xc0, 0xe9, 0xb6, 0xeb, 0x9a, 0x73, 0x14, 0x57, 0x10, 0x36, 0x5c, 0xc7,
  2416. 0x94, 0x81, 0xed, 0xc2, 0xaf, 0x58, 0x81, 0xcd, 0xe1, 0x69, 0xa4, 0xcb, 0x24, 0x82, 0xb9, 0x63,
  2417. 0x5a, 0x32, 0x90, 0x79, 0x88, 0xb4, 0xe5, 0x04, 0x84, 0x52, 0xb7, 0x95, 0xed, 0x7e, 0x15, 0xad,
  2418. 0xec, 0x87, 0x22, 0xc7, 0x8a, 0x90, 0x74, 0x7e, 0xb8, 0xbb, 0x0f, 0xe9, 0x0d, 0x82, 0x92, 0xf6,
  2419. 0x21, 0x2a, 0x89, 0x62, 0x07, 0xeb, 0x70, 0xc2, 0xf6, 0xee, 0xd9, 0x75, 0xf8, 0x96, 0xd3, 0x0a,
  2420. 0x6d, 0x9d, 0x62, 0x85, 0xdf, 0x6d, 0xec, 0x90, 0xf2, 0x94, 0x2b, 0xa3, 0x82, 0x19, 0xea, 0x36,
  2421. 0xce, 0x6b, 0x01, 0x2a, 0x89, 0x12, 0x07, 0x0c, 0xe2, 0xee, 0x33, 0xc7, 0x50, 0x41, 0xc5, 0xa6,
  2422. 0x45, 0xfd, 0x40, 0xc0, 0x7d, 0x02, 0x6b, 0xc2, 0x39, 0x10, 0x07, 0x7b, 0x16, 0x35, 0x71, 0x1e,
  2423. 0x16, 0x3a, 0x4b, 0x18, 0x79, 0x77, 0x2a, 0x68, 0x77, 0x50, 0x49, 0x14, 0x3b, 0xce, 0x4a, 0x5d,
  2424. 0x6f, 0xc1, 0x2f, 0xf0, 0x84, 0xcb, 0x44, 0x48, 0x1c, 0x37, 0xe8, 0xca, 0x79, 0x4e, 0xdb, 0x47,
  2425. 0xd5, 0xb9, 0xaa, 0xa6, 0xbe, 0x88, 0x9e, 0xa3, 0xc4, 0xb0, 0x3c, 0xea, 0x1a, 0x56, 0xf0, 0x60,
  2426. 0xf1, 0x4c, 0x65, 0x3f, 0xf0, 0xd4, 0x82, 0xf5, 0xbb, 0x4e, 0x77, 0x4e, 0x96, 0xd3, 0x26, 0xa8,
  2427. 0xc8, 0x8b, 0x19, 0xc4, 0x35, 0x20, 0xce, 0xc2, 0x99, 0x7c, 0x1e, 0x5d, 0x9e, 0xdf, 0x20, 0xfe,
  2428. 0xb3, 0x58, 0x65, 0x33, 0x0c, 0x42, 0x4a, 0x44, 0x90, 0x3c, 0xdd, 0x0f, 0x70, 0x1e, 0x36, 0xc1,
  2429. 0xa3, 0xc4, 0x17, 0x97, 0xbd, 0x55, 0x54, 0x99, 0xd6, 0x02, 0x5c, 0x14, 0x1f, 0x14, 0x61, 0x36,
  2430. 0x2f, 0x69, 0xbb, 0xa8, 0xc8, 0x0b, 0x1f, 0x18, 0xed, 0xb8, 0x96, 0x41, 0x16, 0x17, 0xae, 0x1b,
  2431. 0xb3, 0x22, 0x60, 0xe8, 0x59, 0x4d, 0xc8, 0x71, 0x13, 0x7a, 0x56, 0x4b, 0xfe, 0xbb, 0x82, 0xd6,
  2432. 0x16, 0x6f, 0x54, 0xea, 0x26, 0xc2, 0x9f, 0xb0, 0xa8, 0xdf, 0x4d, 0xe1, 0xde, 0xd8, 0x1d, 0xc6,
  2433. 0x7d, 0xf6, 0x84, 0x5f, 0x65, 0x8a, 0x74, 0x0d, 0xe4, 0xfc, 0x3a, 0x69, 0x81, 0x54, 0xb5, 0x50,
  2434. 0xf1, 0x28, 0x7a, 0xc8, 0x8e, 0xe4, 0x1d, 0x65, 0x67, 0xa9, 0x9b, 0x5b, 0xc3, 0x06, 0x28, 0x15,
  2435. 0x0c, 0xda, 0xbf, 0x4b, 0xa8, 0xc8, 0x05, 0x5f, 0xba, 0x25, 0xeb, 0xbb, 0xbb, 0x94, 0x74, 0xb0,
  2436. 0xc2, 0x4b, 0x2a, 0x1c, 0x62, 0x91, 0x15, 0xba, 0xd9, 0x31, 0x6c, 0x51, 0xbf, 0x74, 0xb3, 0xd3,
  2437. 0x76, 0x4d, 0x5c, 0x80, 0x30, 0xea, 0x30, 0x2a, 0x72, 0x05, 0xcf, 0x73, 0xe1, 0xf0, 0x82, 0x30,
  2438. 0x08, 0x28, 0x5e, 0xe1, 0x15, 0x3f, 0x3c, 0x14, 0x95, 0x4a, 0x0f, 0x0f, 0x21, 0x08, 0xb8, 0xa2,
  2439. 0x96, 0x50, 0xce, 0x30, 0x30, 0x02, 0x88, 0xc1, 0xe9, 0xab, 0xd3, 0x8e, 0xc0, 0xcb, 0xb8, 0x01,
  2440. 0xe7, 0x00, 0xaf, 0xf2, 0x28, 0xc2, 0x90, 0xc3, 0xd6, 0x44, 0xaf, 0xf0, 0xf0, 0x7a, 0xd6, 0x34,
  2441. 0x30, 0x28, 0x98, 0x96, 0x6f, 0xb8, 0x21, 0xf5, 0x09, 0xbe, 0xcc, 0x13, 0xdf, 0xdd, 0xdd, 0xc7,
  2442. 0x2a, 0x8c, 0xc8, 0xa1, 0x67, 0xe3, 0xe7, 0x78, 0x81, 0x75, 0x89, 0x7f, 0x60, 0x05, 0x7b, 0xf8,
  2443. 0x0a, 0xc8, 0x2d, 0xd0, 0x78, 0x1e, 0x46, 0x6d, 0x9d, 0xde, 0xc7, 0x2f, 0x00, 0x5b, 0xfb, 0x80,
  2444. 0xe0, 0x17, 0xc5, 0xa0, 0x83, 0xeb, 0xbc, 0x03, 0x91, 0x16, 0xfe, 0x1e, 0x38, 0xea, 0x38, 0x78,
  2445. 0x03, 0x48, 0x1c, 0x4f, 0xae, 0xf9, 0xfb, 0xe0, 0xa1, 0xc3, 0x3d, 0x7c, 0x09, 0x1c, 0x70, 0xa6,
  2446. 0x1e, 0xbe, 0x9c, 0xb5, 0xae, 0x1f, 0xf0, 0x3a, 0xc2, 0x0f, 0x2c, 0x7e, 0x05, 0xda, 0x93, 0x87,
  2447. 0xaf, 0xca, 0xf2, 0xac, 0x07, 0xfa, 0xa1, 0xe5, 0xe3, 0x57, 0x45, 0x4a, 0xd0, 0x00, 0x18, 0x35,
  2448. 0xde, 0xd6, 0x78, 0x20, 0x5e, 0xe3, 0x79, 0x09, 0x1e, 0xbe, 0x2e, 0x46, 0xbe, 0x8f, 0xaf, 0x71,
  2449. 0x5d, 0xd7, 0x0f, 0xc0, 0xa7, 0x1f, 0xca, 0x74, 0xe5, 0xda, 0xd7, 0xa7, 0x13, 0x67, 0x1f, 0x6f,
  2450. 0x8a, 0x93, 0x47, 0x20, 0x32, 0x6f, 0x88, 0xde, 0x49, 0x9a, 0xf8, 0x86, 0x1c, 0x79, 0xf8, 0x26,
  2451. 0xb7, 0x42, 0x5d, 0xc7, 0xc6, 0x6f, 0x66, 0x0d, 0xf5, 0x2d, 0x58, 0xa1, 0xe7, 0xe3, 0x06, 0xac,
  2452. 0xf0, 0xa3, 0x50, 0x77, 0xb8, 0x3f, 0x5b, 0xa0, 0x49, 0x0d, 0x18, 0xbe, 0x0d, 0x3f, 0xf0, 0x21,
  2453. 0x25, 0x36, 0xbe, 0xc5, 0x7f, 0x30, 0xa9, 0xeb, 0xe1, 0x6d, 0xa0, 0x00, 0x03, 0x3b, 0xe0, 0x03,
  2454. 0x25, 0x6d, 0x47, 0x77, 0x02, 0xfc, 0x8e, 0x38, 0xb9, 0xb0, 0x4e, 0xc7, 0x0c, 0xdb, 0xf8, 0x5d,
  2455. 0xb0, 0x4e, 0x5d, 0x37, 0xc0, 0xb7, 0x61, 0xe4, 0x43, 0x70, 0xde, 0xe3, 0xa3, 0xb0, 0xd9, 0xc4,
  2456. 0x77, 0x60, 0xc4, 0x2d, 0xfe, 0x88, 0x17, 0x1d, 0xd7, 0xb3, 0x0c, 0x7c, 0x97, 0x37, 0x76, 0x10,
  2457. 0xde, 0x5b, 0x68, 0x44, 0xef, 0x83, 0xca, 0x21, 0x5f, 0xf6, 0x8f, 0x79, 0xb9, 0x0a, 0x79, 0xaf,
  2458. 0xff, 0x80, 0x23, 0xad, 0xc0, 0x26, 0xf8, 0x27, 0xa2, 0x1f, 0x75, 0xbc, 0x3d, 0x40, 0x7f, 0x28,
  2459. 0x53, 0x0e, 0x8e, 0x21, 0xd6, 0x79, 0x76, 0x86, 0x87, 0x9d, 0x0e, 0xde, 0x85, 0xa1, 0xc9, 0xad,
  2460. 0x1a, 0xa0, 0xd2, 0x74, 0x29, 0xb1, 0x5a, 0x0e, 0x36, 0x21, 0x14, 0xf7, 0x0f, 0x30, 0xe1, 0x1d,
  2461. 0xc6, 0xf2, 0x03, 0xdc, 0x14, 0x77, 0x92, 0xb6, 0x81, 0x5b, 0x3c, 0x01, 0xdc, 0xb6, 0xc8, 0xcb,
  2462. 0x3d, 0xe8, 0x08, 0xd9, 0x8c, 0x6f, 0xbc, 0xc5, 0x35, 0xc3, 0xb6, 0x81, 0xf7, 0x21, 0x2c, 0x86,
  2463. 0xeb, 0xe1, 0xfb, 0x10, 0x09, 0xd3, 0xf2, 0x79, 0xf3, 0x26, 0x26, 0xb6, 0xb5, 0xbf, 0x29, 0x68,
  2464. 0x75, 0xe1, 0x5b, 0xf7, 0x9b, 0x7d, 0x1f, 0x92, 0x85, 0x57, 0x81, 0x5b, 0xcb, 0x7c, 0x64, 0xcf,
  2465. 0x3d, 0x0e, 0x68, 0x6f, 0xcb, 0x0f, 0x65, 0x8c, 0x6a, 0xf2, 0x3d, 0xe5, 0x69, 0x75, 0x1c, 0xa1,
  2466. 0x92, 0xe1, 0xb6, 0xdb, 0xf0, 0xad, 0xac, 0xb5, 0x50, 0x39, 0x73, 0x45, 0xad, 0xcf, 0xde, 0x7b,
  2467. 0xc4, 0x67, 0xf9, 0xf4, 0xb5, 0xe7, 0x55, 0x54, 0x7b, 0xc8, 0x06, 0xc3, 0xb8, 0x9b, 0x3c, 0x7a,
  2468. 0x34, 0x61, 0xe2, 0x93, 0xaa, 0x48, 0xab, 0x5c, 0xe6, 0x72, 0x91, 0xf6, 0x27, 0x05, 0xbd, 0xa8,
  2469. 0xc7, 0xd1, 0xd1, 0xe9, 0xcf, 0xd9, 0xec, 0x59, 0x84, 0xfd, 0xec, 0x84, 0x4d, 0x52, 0xd5, 0x40,
  2470. 0xe5, 0xbe, 0x7c, 0x5f, 0xba, 0x60, 0x78, 0xb2, 0xe7, 0x28, 0x3a, 0x05, 0xaa, 0x1e, 0x5a, 0x65,
  2471. 0x71, 0x2f, 0xe9, 0x0f, 0xe3, 0x41, 0x77, 0x2e, 0x56, 0x37, 0xcf, 0x8d, 0x95, 0xc0, 0xf0, 0x28,
  2472. 0xd5, 0xd8, 0xdc, 0x4c, 0xfb, 0xa7, 0x82, 0xea, 0x5f, 0x76, 0x79, 0x32, 0x4a, 0xa0, 0x0f, 0x1d,
  2473. 0x20, 0x35, 0x33, 0xdd, 0x9d, 0xbd, 0x0b, 0x29, 0x4b, 0xbe, 0x0b, 0x5d, 0xce, 0x38, 0x16, 0x3e,
  2474. 0x9e, 0xa7, 0xef, 0x61, 0xb9, 0xc5, 0xf7, 0x30, 0x95, 0x88, 0x37, 0x28, 0x16, 0xf7, 0xd8, 0x44,
  2475. 0xbe, 0xee, 0x5c, 0xbf, 0x80, 0x2d, 0xd0, 0xa7, 0x33, 0x24, 0x5c, 0xf2, 0x5e, 0x90, 0x0b, 0xe3,
  2476. 0xa9, 0x32, 0x64, 0x93, 0xef, 0xf8, 0x56, 0x3c, 0x99, 0x26, 0xcf, 0xcc, 0x61, 0xb9, 0x11, 0x3a,
  2477. 0x2a, 0x33, 0x29, 0xab, 0x2b, 0x3c, 0x24, 0xd7, 0x2e, 0x74, 0x3c, 0xe8, 0x14, 0xf6, 0xac, 0x90,
  2478. 0x6b, 0x7f, 0x54, 0xd0, 0x95, 0x2c, 0x09, 0x4e, 0xe3, 0x34, 0x7a, 0xf2, 0x1d, 0x8f, 0xd4, 0x5f,
  2479. 0x14, 0xf4, 0xfc, 0x19, 0x7f, 0x65, 0xa0, 0x16, 0x92, 0x47, 0xf9, 0xba, 0xc9, 0xa3, 0xbe, 0x8f,
  2480. 0x4a, 0xfc, 0xe2, 0x32, 0xa9, 0xe7, 0x38, 0xc7, 0xeb, 0xe7, 0x55, 0x32, 0x50, 0xa6, 0x12, 0xb3,
  2481. 0x10, 0xea, 0xfc, 0x99, 0x50, 0xff, 0x2e, 0x8f, 0x9e, 0xd3, 0xc5, 0xa3, 0x35, 0x83, 0xa2, 0xf3,
  2482. 0xad, 0x46, 0xfa, 0x00, 0x95, 0x1f, 0xb1, 0x28, 0x3d, 0x19, 0xb3, 0x89, 0x7c, 0x5b, 0xbb, 0x77,
  2483. 0x0e, 0xc9, 0x53, 0x5c, 0x69, 0x34, 0x25, 0x05, 0x9d, 0x92, 0x7d, 0x79, 0x0b, 0xf3, 0xdf, 0x70,
  2484. 0x0b, 0x37, 0x7e, 0xab, 0xa0, 0x72, 0x66, 0x48, 0xbd, 0x86, 0xd6, 0xd8, 0x93, 0x74, 0x1c, 0xf5,
  2485. 0xd2, 0xee, 0x84, 0xef, 0x27, 0x0f, 0x41, 0x99, 0xae, 0x4a, 0xa9, 0xd8, 0x64, 0xf5, 0x0d, 0x84,
  2486. 0x33, 0xb5, 0xe9, 0x69, 0xc8, 0x71, 0xc5, 0x75, 0x29, 0xcf, 0x0e, 0x8e, 0xfa, 0x3e, 0xda, 0xc8,
  2487. 0x54, 0x9f, 0x52, 0xc1, 0xf2, 0x1c, 0x54, 0x97, 0x1a, 0xe6, 0xd9, 0xf2, 0xa4, 0x7d, 0x91, 0x83,
  2488. 0xf3, 0x30, 0x1f, 0x99, 0xef, 0x52, 0x7a, 0xcd, 0x17, 0x83, 0xfc, 0xd7, 0x2b, 0x06, 0x4f, 0x2f,
  2489. 0xec, 0x85, 0x6f, 0xb7, 0xb0, 0x17, 0x17, 0x53, 0xff, 0xc6, 0x1d, 0x54, 0x9b, 0x4f, 0x08, 0x71,
  2490. 0x17, 0x71, 0x08, 0xbe, 0x04, 0xa3, 0x30, 0x68, 0xde, 0x11, 0xd7, 0xf3, 0x30, 0x68, 0xde, 0xba,
  2491. 0x2d, 0xae, 0xe7, 0x61, 0xd0, 0xdc, 0xd9, 0xc6, 0xf9, 0xed, 0xbf, 0x17, 0xd1, 0xba, 0x2d, 0x69,
  2492. 0x7c, 0xf1, 0x57, 0x91, 0xfa, 0x67, 0x05, 0xe1, 0xb3, 0x8d, 0x4b, 0xbd, 0x7d, 0x6e, 0xba, 0x3f,
  2493. 0xb5, 0x39, 0x6f, 0xbc, 0xb7, 0x34, 0x4e, 0x24, 0x84, 0xd6, 0xf8, 0xec, 0x8b, 0x7f, 0xfd, 0x26,
  2494. 0xb7, 0xa9, 0xbd, 0x36, 0xfd, 0x4f, 0x2b, 0x8b, 0xc9, 0xe4, 0x6e, 0x74, 0x06, 0x74, 0x57, 0xb9,
  2495. 0xa1, 0x7e, 0xae, 0xa0, 0xf5, 0x33, 0x45, 0x5e, 0x7d, 0xf7, 0x62, 0xc6, 0xcf, 0x74, 0xb1, 0x8d,
  2496. 0xdb, 0xcb, 0xc2, 0xa4, 0xcb, 0x6f, 0x71, 0x97, 0xaf, 0x6b, 0xda, 0x57, 0xbb, 0x9c, 0x61, 0xc0,
  2497. 0xe3, 0x3f, 0x28, 0x68, 0x75, 0xa1, 0xd6, 0xaa, 0x3b, 0x17, 0x0c, 0xd6, 0x7c, 0x27, 0xd9, 0x78,
  2498. 0x67, 0x39, 0x90, 0xf4, 0xf5, 0x26, 0xf7, 0xf5, 0x9a, 0x76, 0xf5, 0x19, 0xe1, 0xe5, 0x08, 0xf0,
  2499. 0xf4, 0xf7, 0x0a, 0xaa, 0xcd, 0x9f, 0x5a, 0x75, 0x7b, 0xf9, 0xe2, 0xb7, 0xb1, 0xb3, 0x14, 0x46,
  2500. 0xba, 0x79, 0x83, 0xbb, 0xf9, 0xba, 0xf6, 0xca, 0x53, 0xdd, 0x9c, 0x01, 0xee, 0x2a, 0x37, 0x76,
  2501. 0x3f, 0x53, 0xd0, 0xab, 0xbd, 0xe4, 0xf8, 0xd9, 0x66, 0x76, 0xaf, 0x9c, 0x49, 0x77, 0x6f, 0x9c,
  2502. 0xa4, 0x89, 0xa7, 0x7c, 0x4c, 0x24, 0x6c, 0x90, 0x00, 0xa4, 0x91, 0x8c, 0x07, 0x5b, 0x03, 0x16,
  2503. 0xf3, 0x7f, 0x3e, 0xb7, 0xc4, 0x4f, 0xd1, 0x68, 0x38, 0xf9, 0x8a, 0xff, 0x5b, 0xef, 0x65, 0x82,
  2504. 0x87, 0x25, 0x8e, 0xd8, 0xf9, 0x7f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe6, 0xf6, 0xe5, 0xb1, 0xa0,
  2505. 0x1d, 0x00, 0x00,
  2506. }