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.
 
 
 

3119 lines
116 KiB

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